Skip to content

Commit

Permalink
added expl.
Browse files Browse the repository at this point in the history
Moved explanation of -p. Also, adjusted time estimate for download (although still conservative IMO)
  • Loading branch information
aschuerch authored Nov 21, 2019
1 parent 9a8be9e commit e2fc59b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion episodes/02-quality-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ We are studying a population of *Escherichia coli* (designated Ara-3), which wer

The data are paired-end, so we will download two files for each sample. We will use the [European Nucleotide Archive](https://www.ebi.ac.uk/ena) to get our data. The ENA "provides a comprehensive record of the world's nucleotide sequencing information, covering raw sequencing data, sequence assembly information and functional annotation." The ENA also provides sequencing data in the fastq format, an important format for sequencing reads that we will be learning about today.

To download the data, run the commands below. It will take about 10 minutes to download the files.
To download the data, run the commands below.

Here we are using the `-p` option for `mkdir`. This option allows `mkdir` to create the new directory, even if one of the parent directories doesn't already exist. It also supresses errors if the directory already exists, without overwriting that directory.

It will take about 15 minutes to download the files.
~~~
mkdir -p ~/dc_workshop/data/untrimmed_fastq/
cd ~/dc_workshop/data/untrimmed_fastq
Expand Down

0 comments on commit e2fc59b

Please sign in to comment.