Browse code

Replace load_all

Former-commit-id: 435ad71bd366e8c77c9d388bde67e4cc5e0c1b82 [formerly 0dc6b52893867ee8ca6ebd2af910058266b84858]
Former-commit-id: 2643509abd004a163db46e2bfbcd0bc5c09b51e3

Tiago authored on 16/07/2020 20:08:04
Showing 1 changed files

... ...
@@ -12,7 +12,7 @@ knitr::opts_chunk$set(cache = FALSE)
12 12
 ```
13 13
   
14 14
 ```{r, echo = FALSE,hide=TRUE, message=FALSE,warning=FALSE}
15
-devtools::load_all(".")
15
+library(TCGAbiolinks)
16 16
 ```
17 17
 
18 18
 ```{r message=FALSE, warning=FALSE, include=FALSE}
... ...
@@ -54,11 +54,13 @@ In this example we will retrieve two samples from TCGA and classify them expecti
54 54
 the same result as the paper.
55 55
 
56 56
 ```{r, eval = FALSE, message = FALSE, results = "hide"}
57
-query <- GDCquery(project = "TCGA-GBM",
58
-                   data.category = "DNA methylation",
59
-                   barcode = c("TCGA-06-0122","TCGA-14-1456"),
60
-                   platform = "Illumina Human Methylation 27",
61
-                   legacy = TRUE)
57
+query <- GDCquery(
58
+  project = "TCGA-GBM",
59
+  data.category = "DNA methylation",
60
+  barcode = c("TCGA-06-0122","TCGA-14-1456"),
61
+  platform = "Illumina Human Methylation 27",
62
+  legacy = TRUE
63
+)
62 64
 GDCdownload(query)
63 65
 data.hg19 <- GDCprepare(query)
64 66
 ```