From 55ead88514249f95fadac3def4aa77d8aa0e42ae Mon Sep 17 00:00:00 2001
From: Carine Rey <carine.rey@ens-lyon.fr>
Date: Tue, 6 Sep 2022 17:15:00 +0200
Subject: [PATCH] fix file path

---
 session_4/session_4.Rmd | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/session_4/session_4.Rmd b/session_4/session_4.Rmd
index 204770f..44698ac 100644
--- a/session_4/session_4.Rmd
+++ b/session_4/session_4.Rmd
@@ -503,10 +503,12 @@ First, we will use the gene count table of these samples, formatted for use in g
 Open the csv file using the `read_csv2()` function. The file is located at "https://can.gitbiopages.ens-lyon.fr/R_basis/session_4/Expression_matrice_pivot_longer_DEGs_GSE86356.csv".
 
 <details><summary>Solution</summary>
-  <p>
+<p>
+
+Download the Expression_matrice_pivot_longer_DEGs_GSE86356.csv file and save it in your working directory.
 
 ```{r read_csv1}
-expr_DM1 <- read_csv2("https://can.gitbiopages.ens-lyon.fr/R_basis/Expression_matrice_pivot_longer_DEGs_GSE86356.csv")
+expr_DM1 <- read_csv2("Expression_matrice_pivot_longer_DEGs_GSE86356.csv")
 
 expr_DM1
 ```
-- 
GitLab