Changes between Version 64 and Version 65 of SOPs/qc_shortReads


Ignore:
Timestamp:
10/04/24 14:05:41 (4 months ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/qc_shortReads

    v64 v65  
    293293   * sample command:
    294294{{{
    295 sbatch -p 20 "fastx_trimmer -f 1 -l 22  -i s7_sequence_clipped.txt -o s7_sequence_clipped_trimmed.txt"  # fastq input and output
    296 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 output
     295sbatch --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
     296sbatch --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
    297297     
    298298[-i INFILE]  = FASTA/Q input file. default is STDIN.