Changes between Version 14 and Version 15 of SOPs/qc_shortReads
- Timestamp:
- 01/29/14 15:19:14 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_shortReads
v14 v15 178 178 * repetitive segments in the "over represented sequences" section. 179 179 * "Per base sequence content" for any patterns at the beginning of your reads 180 * See [[http://hannonlab.cshl.edu/fastx_toolkit/commandline.html#fastx_clipper_usage|fastx_clipper usage]] (or ''fastx_clipper -h'') for more arguments 180 181 182 * [[http://code.google.com/p/cutadapt/|cutadapt]] is a good tool that is designed to find and remove adapters: 183 * more options than fastx_clipper, such as specifically trimming 5' or 3' adapters and specifying error rate (allowed mismatches) 184 * much more conservative than fastx_clipper. 185 * [wiki:SOPs/cutadapt sample usage] 186 * sample command: 187 188 {{{ 189 bsub cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT –o Nanog_noAdapter.fastq Nanog.fastq 190 191 In the above command: 192 -a: Sequence of an adapter that was ligated to the 3' end. 193 -o: output file name 194 }}} 195 196 * See [[http://hannonlab.cshl.edu/fastx_toolkit/commandline.html#fastx_clipper_usage|fastx_clipper usage]] (or ''fastx_clipper -h'') for more arguments 181 197 * sample command: 182 198 … … 198 214 * Add the argument -Q 33, such as 199 215 * fastx_clipper -a CTGTAGGCACCATCAAT -Q 33 -i s2_sequence.txt -v -l 22 -o s2_sequence_noLinker.txt 200 201 * [[http://code.google.com/p/cutadapt/|cutadapt]] is another tool that is designed to find and remove adapters:202 * more options than fastx_clipper, such as specifically trimming 5' or 3' adapters and specifying error rate (allowed mismatches)203 * [wiki:SOPs/cutadapt sample usage]204 216 205 217 == Trim reads to a specified length ==