Skip to content

Commit

Permalink
0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed Jul 25, 2020
1 parent e7e13d6 commit eb24360
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The package is intended for exploratory analysis and prioritization of a gene li
* Which subcellular compartments (nucleus, cytosol, plasma membrane etc) are dominant for proteins in the target set?
* Which protein-protein interactions are known within the target set? Are there interactions between members of the target set and other cancer-relevant proteins (e.g. proto-oncogenes, tumor-suppressors or predicted cancer drivers)? Which proteins constitute hubs in the protein-protein interaction network?
* Are there specific pathways or functional properties that are enriched within the target set, as compared to a reference/background set?
* Which members of the target set are frequently mutated in tumor sample cohorts (TCGA, homozygous deletions/amplifications)?
* Which members of the target set are frequently mutated in tumor sample cohorts (TCGA, SNVs/InDels, homozygous deletions, copy number amplifications)?
* Which members of the target set are co-expressed (strong negative or positive correlations) with proto-oncogenes or tumor suppressors in tumor sample cohorts (TCGA, RNAseq)?
* Which members of the target set are associated with cellular loss-of-fitness in CRISPR/Cas9 whole-genome drop out screens of cancer cell lines (i.e. reduction of cell viability elicited by a gene inactivation)?

Expand Down
Binary file modified data/alias2primary.rda
Binary file not shown.
Binary file modified data/keggdb.rda
Binary file not shown.
Binary file added data/maf_codes.rda
Binary file not shown.
Binary file modified data/otdb.rda
Binary file not shown.
Binary file modified data/release_notes.rda
Binary file not shown.
52 changes: 27 additions & 25 deletions inst/templates/cancer_mutation_frequency.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

* The somatic mutation frequencies of the target genes in ~10,000 tumor samples have been calculated from [The Cancer Genome Atlas (TCGA)]()

<br>
<br><br>

#### SNVs/InDels {.tabset}

Expand All @@ -22,13 +22,15 @@ fontSize <- 1.4
legendFontSize <- 2
legend_height <- 6
anno_height <- 0.7
fheight <- 21
fwidth <- 18
```


##### Breast

```{r tcga_oncoplot_breast, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_breast, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Breast"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -47,7 +49,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Breast"]][['top_mutated_gen

##### Colon/Rectum

```{r tcga_oncoplot_colon, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_colon, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Colon/Rectum"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -66,7 +68,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Colon/Rectum"]][['top_mutat

##### Lung

```{r tcga_oncoplot_lung, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_lung, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Lung"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -85,7 +87,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Lung"]][['top_mutated_genes

##### Skin

```{r tcga_oncoplot_skin, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_skin, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Skin"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -104,7 +106,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Skin"]][['top_mutated_genes

##### Esophagus/Stomach

```{r tcga_oncoplot_stomach, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_stomach, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Esophagus/Stomach"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -123,7 +125,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Esophagus/Stomach"]][['top_

##### Cervix

```{r tcga_oncoplot_cervix, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_cervix, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Cervix"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -142,7 +144,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Cervix"]][['top_mutated_gen

##### Prostate

```{r tcga_oncoplot_prostate, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_prostate, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Prostate"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -161,7 +163,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Prostate"]][['top_mutated_g

##### Ovary/Fallopian Tube

```{r tcga_oncoplot_ovary, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_ovary, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Ovary/Fallopian Tube"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -182,7 +184,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Ovary/Fallopian Tube"]][['t
##### Uterus


```{r tcga_oncoplot_uterus, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_uterus, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Uterus"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -203,7 +205,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Uterus"]][['top_mutated_gen
##### Pancreas


```{r tcga_oncoplot_pancreas, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_pancreas, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Pancreas"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -224,7 +226,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Pancreas"]][['top_mutated_g
##### Soft Tissue


```{r tcga_oncoplot_softtissue, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_softtissue, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Soft Tissue"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -244,7 +246,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Soft Tissue"]][['top_mutate
##### Myeloid


```{r tcga_oncoplot_myeloid, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_myeloid, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Myeloid"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -264,7 +266,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Myeloid"]][['top_mutated_ge
##### CNS/Brain


```{r tcga_oncoplot_cns, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_cns, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["CNS/Brain"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -284,7 +286,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["CNS/Brain"]][['top_mutated_
##### Liver


```{r tcga_oncoplot_liver, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_liver, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Liver"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -304,7 +306,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Liver"]][['top_mutated_gene
##### Kidney


```{r tcga_oncoplot_kidney, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_kidney, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Kidney"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -324,7 +326,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Kidney"]][['top_mutated_gen
##### Lymphoid


```{r tcga_oncoplot_lymphoid, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_lymphoid, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Lymphoid"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -344,7 +346,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Lymphoid"]][['top_mutated_g
##### Head and Neck


```{r tcga_oncoplot_headneck, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_headneck, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Head and Neck"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -364,7 +366,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Head and Neck"]][['top_muta
##### Thyroid


```{r tcga_oncoplot_thyroid, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_thyroid, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Thyroid"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -384,7 +386,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Thyroid"]][['top_mutated_ge
##### Biliary Tract


```{r tcga_oncoplot_biliarytract, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_biliarytract, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Biliary Tract"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -404,7 +406,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Biliary Tract"]][['top_muta
##### Bladder/Urinary Tract


```{r tcga_oncoplot_bladder, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_oncoplot_bladder, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Bladder/Urinary Tract"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -424,7 +426,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Bladder/Urinary Tract"]][['
##### Pleura


```{r tcga_pleura, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_pleura, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Pleura"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand All @@ -444,7 +446,7 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Pleura"]][['top_mutated_gen
##### Thyroid


```{r tcga_thyroid, echo = F, eval = T, fig.height = 18, fig.width = 16.5}
```{r tcga_thyroid, echo = F, eval = T, fig.height = fheight, fig.width = fwidth}
code <- tcga_oncoplot_data[["Thyroid"]][['code']]
maf <- readRDS(url(paste0("https://github.com/sigven/oncoEnrichR/raw/master/maf/",code,".maf.rds")))
Expand Down Expand Up @@ -474,12 +476,12 @@ maftools::oncoplot(maf, genes = tcga_oncoplot_data[["Thyroid"]][['top_mutated_ge


<br><br>
```{r tcga_ampl_plot, echo = F, eval = T, fig.height = onc_enrich_report[['config']][['tcga_aberration']][['plot_height']], fig.width = 16.5}
```{r tcga_ampl_plot, echo = F, eval = T, fig.height = onc_enrich_report[['config']][['tcga_aberration']][['plot_height']], fig.width = fwidth}
onc_enrich_report[['data']][['tcga']][['aberration']][['plot']][['cna_ampl']]
```
<br><br>
```{r tcga_homdel_plot, echo = F, eval = T, fig.height = onc_enrich_report[['config']][['tcga_aberration']][['plot_height']], fig.width = 16.5}
```{r tcga_homdel_plot, echo = F, eval = T, fig.height = onc_enrich_report[['config']][['tcga_aberration']][['plot_height']], fig.width = fwidth}
onc_enrich_report[['data']][['tcga']][['aberration']][['plot']][['cna_homdel']]
```
Expand Down

0 comments on commit eb24360

Please sign in to comment.