Changes between Version 14 and Version 15 of SOPs/qc_shortReads


Ignore:
Timestamp:
01/29/14 15:19:14 (11 years ago)
Author:
byuan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/qc_shortReads

    v14 v15  
    178178         * repetitive segments in the "over represented sequences" section.
    179179         * "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{{{
     189bsub cutadapt -a GATCGGAAGAGCTCGTATGCCGTCTT –o Nanog_noAdapter.fastq Nanog.fastq
     190
     191In 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
    181197  * sample command:
    182198
     
    198214    * Add the argument -Q 33, such as
    199215    * 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]
    204216
    205217== Trim reads to a specified length ==