Changes between Version 62 and Version 63 of SOPs/qc_shortReads
- Timestamp:
- 07/29/24 10:47:12 (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_shortReads
v62 v63 98 98 99 99 {{{ 100 sbatch -p 20 "/nfs/BaRC_Public/BaRC_code/Perl/cmpfastq/cmpfastq.pl s_8_1_sequence.txt s_8_2_sequence.txt" # fastq inputs100 sbatch -p 20 --wrap "/nfs/BaRC_Public/BaRC_code/Perl/cmpfastq/cmpfastq.pl s_8_1_sequence.txt s_8_2_sequence.txt" # fastq inputs 101 101 }}} 102 102 … … 189 189 190 190 {{{ 191 sbatch -p 20 "fastq_quality_trimmer -v -t 20 -l 25 -i input.fastq -o output.fastq" # fastq input and output192 sbatch -p 20 "gunzip -c input.fastq.gz | fastq_quality_trimmer -v -t 20 -l 25 -z -o output.fastq.gz" # fastq.gz input and output191 sbatch -p 20 --wrap "fastq_quality_trimmer -v -t 20 -l 25 -i input.fastq -o output.fastq" # fastq input and output 192 sbatch -p 20 --wrap "gunzip -c input.fastq.gz | fastq_quality_trimmer -v -t 20 -l 25 -z -o output.fastq.gz" # fastq.gz input and output 193 193 194 194 [-t N] = Quality threshold - nucleotides with lower … … 231 231 {{{ 232 232 # single-end reads 233 sbatch -p 20 cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT -o Reads_noAdapter.fastq Reads.fastq233 sbatch -p 20 --wrap "cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT -o Reads_noAdapter.fastq Reads.fastq" 234 234 235 235 In the above command: … … 238 238 239 239 # paired-end reads 240 sbatch -p 20 cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT -o Reads_trimmed.1.fq -p Reads_trimmed.2.fq Reads.1.fq Reads.2.fq240 sbatch -p 20 --wrap "cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT -o Reads_trimmed.1.fq -p Reads_trimmed.2.fq Reads.1.fq Reads.2.fq" 241 241 242 242 # use --quality-base=64 option for Phred+64 (Illumina 1.5) … … 270 270 * Sample command: 271 271 {{{ 272 sbatch -p 20 "fastx_clipper -a CTGTAGGCACCATCAAT -i s2_sequence.txt -v -l 22 -o s2_sequence_noLinker.txt" # fastq input and output273 sbatch -p 20 "gunzip -c s2_sequence.txt | fastx_clipper -a CTGTAGGCACCATCAAT -v -l 22 -z -o s2_sequence_noLinker.txt.gz" # fastq.gz input and output272 sbatch -p 20 --wrap "fastx_clipper -a CTGTAGGCACCATCAAT -i s2_sequence.txt -v -l 22 -o s2_sequence_noLinker.txt" # fastq input and output 273 sbatch -p 20 --wrap "gunzip -c s2_sequence.txt | fastx_clipper -a CTGTAGGCACCATCAAT -v -l 22 -z -o s2_sequence_noLinker.txt.gz" # fastq.gz input and output 274 274 275 275