Changes between Version 5 and Version 6 of SOPs/gzipping
- Timestamp:
- 12/02/13 13:59:54 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/gzipping
v5 v6 20 20 21 21 # Trim low-quality bases at end of reads \\ 22 gunzip -c fastq/My_sample.noVec.qgt20.1.fq.gz | fastq_quality_trimmer -v -t 20 -l 30 - z -o fastq/My_sample.noVec.qgt20.t.1.fq.gz\\23 gunzip -c fastq/My_sample.noVec.qgt20.2.fq.gz | fastq_quality_trimmer -v -t 20 -l 30 - z -o fastq/My_sample.noVec.qgt20.t.2.fq.gz\\22 gunzip -c fastq/My_sample.noVec.qgt20.1.fq.gz | fastq_quality_trimmer -v -t 20 -l 30 -o fastq/My_sample.noVec.qgt20.t.1.fq \\ 23 gunzip -c fastq/My_sample.noVec.qgt20.2.fq.gz | fastq_quality_trimmer -v -t 20 -l 30 -o fastq/My_sample.noVec.qgt20.t.2.fq \\ 24 24 25 25 # After trimming, get reads that are still paired (and output as regular fastq for next (bowtie) step) \\ 26 /nfs/BaRC_Public/BaRC_code/Perl/cmpfastq/cmpfastqgz.pl fastq/My_sample.noVec.qgt20.t.1.fq.gz fastq/My_sample.noVec.qgt20.t.2.fq.gz 26 # We hope to modify cmpfastq.pl to accept gz files as input \\ 27 /nfs/BaRC_Public/BaRC_code/Perl/cmpfastq/cmpfastq.pl fastq/My_sample.noVec.qgt20.t.1.fq fastq/My_sample.noVec.qgt20.t.2.fq 27 28 28 29 # Map paired reads with bowtie \\