Changes between Version 64 and Version 65 of SOPs/qc_shortReads
- Timestamp:
- 10/04/24 14:05:41 (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_shortReads
v64 v65 293 293 * sample command: 294 294 {{{ 295 sbatch - p 20 "fastx_trimmer -f 1 -l 22 -i s7_sequence_clipped.txt -o s7_sequence_clipped_trimmed.txt" # fastq input and output296 sbatch - p 20 "gunzip -c s7_sequence_clipped.txt | fastx_trimmer -f 1 -l 22 -z -o s7_sequence_clipped_trimmed.txt.gz" # fastq.gz input and output295 sbatch --partition=20 --job-name=trim --mem=16G --wrap "fastx_trimmer -f 1 -l 22 -i s7_sequences.fastq -o s7_sequences_trimmed.fastq" # fastq input and output 296 sbatch --partition=20 --job-name=trim --mem=16G --wrap "gunzip -c s7_sequences.fastq.gz | fastx_trimmer -f 1 -l 22 -z -o s7_sequences_trimmed.fastq.gz" # fastq.gz input and output 297 297 298 298 [-i INFILE] = FASTA/Q input file. default is STDIN.