Skip to content

Commit 3aba7a9

Browse files
committed
Update
1 parent abaf5db commit 3aba7a9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: TCGAWorkflow
22
Title: TCGA Workflow Analyze cancer genomics and epigenomics data using
33
Bioconductor packages
4-
Version: 1.17.3
4+
Version: 1.17.4
55
Workflow: True
66
Author: Tiago Chedraoui Silva <tiagochst@gmail.com>,
77
Antonio Colaprico <antonio.colaprico@ulb.ac.be>,

vignettes/TCGAWorkflow.Rmd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -832,14 +832,14 @@ one or more selected chromosomes.
832832
LGGmut <- GDCquery_Maf(tumor = "LGG", pipelines = "mutect2")
833833
```
834834

835-
```{r results='hide', echo=TRUE, message=FALSE,warning=FALSE}
835+
```{r results='hide', echo=TRUE, message=FALSE,warning=TRUE, eval = FALSE}
836836
###############################################
837837
## Genomic aberration overview - Circos plot ##
838838
###############################################
839839
# Retrieve curated mutations for selected cancer (e.g. "LGG")
840840
data(mafMutect2LGGGBM)
841841
# Select only potentially damaging mutations
842-
LGGmut %>%
842+
LGGmut <- LGGmut %>%
843843
dplyr::filter(
844844
Variant_Classification %in%
845845
c(
@@ -876,10 +876,12 @@ names(colors) <- c(0,1)
876876
colors <- c("blue","green","red","gold")
877877
names(colors) <- typeNames[1:4]
878878
circos.genomicTrackPlotRegion(
879-
s.mut, ylim = c(1.2,4.2),
879+
s.mut,
880+
ylim = c(1.2,4.2),
880881
panel.fun = function(region, value, ...) {
881882
circos.genomicPoints(region, value, cex = 0.8, pch = 16, col = colors[value[[2]]], ...)
882-
})
883+
}
884+
)
883885
884886
circos.clear()
885887

0 commit comments

Comments
 (0)