We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf0473 commit 54f4f29Copy full SHA for 54f4f29
scripts/gen_fastq.sh
scripts/get_fastq.sh
100644
100755
@@ -1,8 +1,8 @@
1
#!/bin/bash
2
3
-LINES=10000
+LINES=400000
4
OUT_1=test_1.fq
5
OUT_2=test_2.fq
6
7
-curl ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR024/ERR024163/ERR024163_1.fastq.gz 2>/dev/null | gunzip | head -n $LINES > $OUT_1
8
-curl ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR024/ERR024163/ERR024163_2.fastq.gz 2>/dev/null | gunzip | head -n $LINES > $OUT_2
+curl ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR174/ERR174324/ERR174324_1.fastq.gz 2>/dev/null | gunzip | head -n $LINES > $OUT_1
+curl ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR174/ERR174324/ERR174324_2.fastq.gz 2>/dev/null | gunzip | head -n $LINES > $OUT_2
0 commit comments