File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,19 @@ BAMBIN=../bamhash_checksum_bam
55WGSIM =wgsim
66
77REF =ecoliMG1655.fa
8+
9+ .PHONY : FORCE clean reallyclean
10+
11+
812# r.namesorted.fastq.md5sum FORCE
913r : r.sorted.bam.md5sum r.unsorted.bam.md5sum r.fastq.md5sum r.namesorted.bam.md5sum r.single.sorted.bam.md5sum r.single.unsorted.bam.md5sum r.single.fastq.md5sum r.single.namesorted.bam.md5sum FORCE
1014 for x in r* .md5sum; do echo $$ x $$ (cat $$ x); done
1115
16+ # retrieve ref from internet if not already available
17+ ${REF} :
18+ wget -nH https://github.com/ctb/edda/raw/master/doc/tutorials-2012/files/ecoliMG1655.fa.gz
19+ gunzip ${REF} .gz
20+
1221${REF}.bwt : ${REF}
1322 bwa index ${REF}
1423
@@ -83,3 +92,11 @@ r.single.fastq.md5sum: r1.fastq FORCE
8392
8493
8594FORCE :
95+
96+
97+ clean :
98+ rm -f * .md5sum
99+
100+ reallyclean : clean
101+ rm -f * .bam * .fastq
102+
You can’t perform that action at this time.
0 commit comments