Skip to content

Commit

Permalink
fix download of imput data (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrue authored Aug 1, 2024
1 parent d0f72fb commit f711a4a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions episodes/01-setup.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ download.file(
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/counts.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/counts.csv"
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/gene_metadata.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/gene_metadata.csv"
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/sample_metadata.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/sample_metadata.csv"
)
```

Expand Down
6 changes: 3 additions & 3 deletions episodes/download_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ download.file(
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/counts.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/counts.csv"
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/gene_metadata.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/gene_metadata.csv"
)
download.file(
url = "https://raw.githubusercontent.com/Bioconductor/bioconductor-teaching/devel/data/SummarizedExperiment/sample_metadata.csv",
destfile = "data/actb_orfs.fasta"
destfile = "data/sample_metadata.csv"
)

0 comments on commit f711a4a

Please sign in to comment.