Skip to content

Commit

Permalink
couple more fs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jashapiro committed Aug 6, 2024
1 parent e14cdaa commit 8cdd742
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions RNA-seq/00c-tximeta_other_species.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,7 @@ quant_dir <- file.path(data_dir, "salmon_quant")
# Create a directory to hold the tximport results if it doesn't exist yet
txi_dir <- file.path(data_dir, "txi")
if (!dir.exists(txi_dir)) {
dir.create(txi_dir, recursive = TRUE)
}
fs::dir_create(txi_dir)
```

```{r input-names}
Expand Down
4 changes: 1 addition & 3 deletions RNA-seq/06-openpbta_heatmap.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ data_dir <- file.path("data", "open-pbta")
# We'll store the heatmap in plots/open-pbta - create directory if it doesn't exist yet
plots_dir <- file.path("plots", "open-pbta")
if (!dir.exists(plots_dir)) {
dir.create(plots_dir, recursive = TRUE)
}
fs::dir_create(plots_dir)
```

#### Input files
Expand Down

0 comments on commit 8cdd742

Please sign in to comment.