Changes between Version 4 and Version 5 of SOPs/mapping
- Timestamp:
- 06/12/13 09:43:57 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/mapping
v4 v5 7 7 These mapping tools are useful for reads of DNA origin that should map to a continuous stretch of genomic DNA. Some of these tools can tolerate short indels but they're not designed for reads that span a splice junction 8 8 9 One may choose between bowtie version 1 (faster but ignores indels) and bowtie version 2 (slower but allows indels). For a feature comparision, see [http://bowtie-bio.sourceforge.net/bowtie2/faq.shtml How is Bowtie 2 different from Bowtie 1?]9 One may choose between bowtie version 1 (faster but ignores indels) and bowtie version 2 (slower but performs gapped alignment (i.e., indels)). For a feature comparision, see [http://bowtie-bio.sourceforge.net/bowtie2/faq.shtml How is Bowtie 2 different from Bowtie 1?] 10 10 11 11 '''[http://bowtie-bio.sourceforge.net/index.shtml bowtie version 1]''' … … 13 13 Sample command: 14 14 {{{ 15 bsub "bowtie -k 1 -n 2 -l 70 --best --sam --solexa1.3-quals /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt ../s7_mm9.k1.n2.l36.best.sam"15 bsub "bowtie -k 1 -n 2 -l 70 --best --sam --solexa1.3-quals /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt s7_mm9.k1.n2.l36.best.sam" 16 16 }}} 17 17 … … 29 29 '''[http://bowtie-bio.sourceforge.net/bowtie2/index.shtml bowtie version 2]''' 30 30 31 Sample command: 32 {{{ 33 bsub "bsub bowtie2 --phred64 -L 22 -N 1 -x /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt -S s7_mm9.L22.N1.sam" 34 }}} 35 36 The parameters used on the sample command are: 37 * '''-L <int>''' length of seed substrings; must be >3 and <32 (default=22) 38 * '''-N <int>''' max # mismatches in seed alignment; can be 0 or 1 (default=0) 39 * '''--phred64''' (if input quals are from GA Pipeline ver. >= 1.3) See the table at the top of FastQC output to identify the "encoding" scale [[br]] 40 * '''-S''' name of SAM output file 41 42 bowtie2 can also perform local alignments where the unaligned end(s) of a read are clipped (so, for example, remaining adapter won't prevent alignment) by adding the argument '''--local'''. 43 44 45 31 46 == Splice-aware mappers ==