From 4e235d2360f1ea233054cc891a89c6acabdf6961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Michonneau?= Date: Fri, 15 Mar 2019 10:16:53 +0100 Subject: [PATCH 1/2] fix typo --- episodes/01-introduction.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/01-introduction.Rmd b/episodes/01-introduction.Rmd index 1a251fec..4311b431 100644 --- a/episodes/01-introduction.Rmd +++ b/episodes/01-introduction.Rmd @@ -291,7 +291,7 @@ the root directory for Linux. Next, use the Tab key, to take advantage of RStudio's Tab-autocompletion method, to select `home`, `dcuser`, and `dc_genomics_r` directory. The path in your script should look like this: -```{r, eval = FALSE, purl = FALSe} +```{r, eval = FALSE, purl = FALSE} # This sets the working directory setwd("/home/dcuser/dc_genomics_r") ``` From ab6841aa15ed49a2f898b18cc49dcbb5721c7cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Michonneau?= Date: Fri, 15 Mar 2019 10:29:37 +0100 Subject: [PATCH 2/2] fix typo --- episodes/02-r-basics.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/02-r-basics.Rmd b/episodes/02-r-basics.Rmd index 57764eee..834e962e 100644 --- a/episodes/02-r-basics.Rmd +++ b/episodes/02-r-basics.Rmd @@ -475,7 +475,7 @@ snp_genes[-6] We can remove that value from our vector by overwriting it with this expression: -```{r. purl = FALSE} +```{r, purl = FALSE} snp_genes <- snp_genes[-6] snp_genes ```