Changes between Version 59 and Version 60 of SOPs/qc_shortReads
- Timestamp:
- 12/18/20 15:25:09 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_shortReads
v59 v60 246 246 * To remove Illumina TruSeq adapters (from the [[https://cutadapt.readthedocs.io/en/stable/guide.html|cutadapt user guide]]): 247 247 {{{ 248 cutadapt -a AGATCGGAAGAGC -A AGATCGGAAGAGC -o trimmed.1.fq.gz -p trimmed.2.fq.gz reads.1.fq.gz reads.2.fq.gz 248 # Choose your preferred minimum length. If this is not set, some output reads may have a length of 0, which can cause downstream applications to fail. 249 cutadapt --minimum-length 25 -a AGATCGGAAGAGC -A AGATCGGAAGAGC -o trimmed.1.fq.gz -p trimmed.2.fq.gz reads.1.fq.gz reads.2.fq.gz 249 250 }}} 250 251