Skip to content

Commit

Permalink
path correction
Browse files Browse the repository at this point in the history
  • Loading branch information
3mmaRand committed Oct 22, 2023
1 parent 00a4ed8 commit a4dbe24
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions omics/week-5/workshop.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ s30_results_sig0.01 <- s30_results |>
```{r}
# write to csv file
write_csv(s30_results_sig0.01,
file = "omics/week-5/results/s30_results_sig0.01.csv")
file = "results/s30_results_sig0.01.csv")
```

```{r}
Expand All @@ -222,7 +222,7 @@ s30_results_sig0.05 <- s30_results |>
```{r}
# write to csv file
write_csv(s30_results_sig0.05,
file = "omics/week-5/results/s30_results_sig0.05.csv")
file = "results/s30_results_sig0.05.csv")
```

Expand Down Expand Up @@ -438,8 +438,8 @@ We will carry out several steps
#| echo: false
#---CODING ANSWER---
# import the normalised counts
prog <- read_csv("omics/week-5/data-raw/surfaceome_prog.csv")
hspc <- read_csv("omics/week-5/data-raw/surfaceome_hspc.csv")
prog <- read_csv("data-raw/surfaceome_prog.csv")
hspc <- read_csv("data-raw/surfaceome_hspc.csv")
```

Expand All @@ -456,7 +456,7 @@ prog_hspc <- bind_cols(prog, hspc[-1])

```{r}
# import the DE results
prog_hspc_results <- read_csv("omics/week-5/results/prog_hspc_results.csv")
prog_hspc_results <- read_csv("results/prog_hspc_results.csv")
```


Expand Down Expand Up @@ -568,7 +568,7 @@ prog_hspc_results_sig0.01 <- prog_hspc_results |>
write to csv file
```{r}
write_csv(prog_hspc_results_sig0.01,
file = "omics/week-5/results/prog_hspc_results_sig0.01.csv")
file = "results/prog_hspc_results_sig0.01.csv")
```


Expand All @@ -582,7 +582,7 @@ write to csv file

```{r}
write_csv(prog_hspc_results_sig0.05,
file = "omics/week-5/results/prog_hspc_results_sig0.05.csv")
file = "results/prog_hspc_results_sig0.05.csv")
```

Expand Down

0 comments on commit a4dbe24

Please sign in to comment.