-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Takadonet/remove_fastqs
Reduce repo size from 191M to 919k.
- Loading branch information
Showing
7 changed files
with
36 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
testdir='tests/fastqs' | ||
|
||
echo -e "Downloading fastq files from EBI..." | ||
|
||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR026/ERR026529/ERR026529_1.fastq.gz -P $testdir | ||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR026/ERR026529/ERR026529_2.fastq.gz -P $testdir | ||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR027/ERR027250/ERR027250_1.fastq.gz -P $testdir | ||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR027/ERR027250/ERR027250_2.fastq.gz -P $testdir | ||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR036/ERR036104/ERR036104_1.fastq.gz -P $testdir | ||
wget ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR036/ERR036104/ERR036104_2.fastq.gz -P $testdir | ||
|
||
echo -e "Done downloading.\n\n" | ||
|
||
for file in `ls $testdir/*` ; do | ||
echo -e "Attempting to unzip $file..." | ||
gunzip $file; | ||
echo -e "Done unzipping $file.\n" | ||
done | ||
|
||
echo -e "Done downloading and extrating test read files." |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
location of downloaded test fastq files |