Changes between Version 11 and Version 12 of SOPs/mapping


Ignore:
Timestamp:
09/12/13 10:20:18 (11 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/mapping

    v11 v12  
    3131
    3232'''[http://bowtie-bio.sourceforge.net/bowtie2/index.shtml bowtie version 2]'''
     33
     34Bowtie 2 was designed as an improvement to bowtie 1.  See the first [http://bowtie-bio.sourceforge.net/bowtie2/faq.shtml bowtie2 FAQ] for how they differ.  Early versions of bowtie 2 had some issues, but these seem to have been fixed.  Bowtie 2 uses a different set of genome index files (*.bt2) than bowtie 1 (*.ebwt).
    3335
    3436Sample command:
     
    6971Sample command:
    7072{{{
    71 bsub tophat -o s_7_tophat_out --phred64-quals --segment-length 20 -I 15000 -G /nfs/genomes/mouse_gp_jul_07_no_random/gtf/Mus_musculus.NCBIM37.67_noNT.gtf --no-novel-juncs /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt
     73bsub tophat -o s_7_tophat_out --phred64-quals --segment-length 20 -I 800000 -G /nfs/genomes/mouse_gp_jul_07_no_random/gtf/Mus_musculus.NCBIM37.67_noNT.gtf --no-novel-juncs /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt
    7274}}}
    7375
     
    7577  * '''-o/--output-dir <word>'''     All output files will be created in this directory (default = tophat_out)
    7678  * '''--segment-length <int>'''  Shortest length of a spliced read that can map to one side of the junction.  For reads shorter than ~45 nt, set this to half the read length (so set '--segment-length 20' for 40-nt reads).  For longer reads, the default length (25) can be used.
    77   * '''-I <int>''' Maximum intron length.  If your genome has introns that are shorter than the default value (500000), set this to a more appropriate value (and prevent some aberrant mapping)
     79  * '''-I <int>''' Maximum intron length.  If your genome has introns that are all shorter (or often longer) than the default value (500000), set this to a more appropriate value
    7880  * '''-G <GTF file>''' Supply bowtie with a GTF file of transcript models.  This can help bowtie identify functions that may otherwise be missed.
    7981  * '''--no-novel-juncs ''' Only look for spliced reads across junctions in the supplied GTF file.  Typically not used.
     
    8486'''[http://tophat.cbcb.umd.edu/ tophat version 2]'''
    8587
    86 TopHat version 2 uses bowtie2, rather than bowtie, for its mapping.
     88TopHat version 2 uses bowtie2, rather than bowtie, for its mapping.  As a result, TopHat 2 uses a different set of genome index files (*.bt2) than TopHat 1 (*.ebwt).
    8789
    8890Sample command:
    8991{{{
    90 bsub tophat -o s_7_tophat_out --phred64-quals --segment-length 20 -I 15000 -G /nfs/genomes/mouse_gp_jul_07_no_random/gtf/Mus_musculus.NCBIM37.67_noNT.gtf --no-novel-juncs /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt
     92bsub tophat -o s_7_tophat_out --phred64-quals --segment-length 20 -I 800000 -G /nfs/genomes/mouse_gp_jul_07_no_random/gtf/Mus_musculus.NCBIM37.67_noNT.gtf --no-novel-juncs /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt
    9193}}}
    9294
     
    9496  * '''-o/--output-dir <word>'''     All output files will be created in this directory (default = tophat_out)
    9597  * '''--segment-length <int>'''  Shortest length of a spliced read that can map to one side of the junction.  For reads shorter than ~45 nt, set this to half the read length (so set '--segment-length 20' for 40-nt reads).  For longer reads, the default length (25) can be used.
    96   * '''-I <int>''' Maximum intron length.  If your genome has introns that are shorter than the default value (500000), set this to a more appropriate value (and prevent some aberrant mapping)
     98  * '''-I <int>''' Maximum intron length.  If your genome has introns that are all shorter (or often longer) than the default value (500000), set this to a more appropriate value
    9799  * '''-G <GTF file>''' Supply bowtie with a GTF file of transcript models.  This can help bowtie identify functions that may otherwise be missed.
    98100  * '''--no-novel-juncs ''' Only look for spliced reads across junctions in the supplied GTF file.  Typically not used.