Changes between Version 5 and Version 6 of SOPs/mapping
- Timestamp:
- 06/12/13 13:24:46 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/mapping
v5 v6 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 18 The parameters used on the sample command are:18 The parameters included in the sample command are: 19 19 * '''-l/--seedlen <int>''' seed length for -n (default: 28) -- Set to longest possible length of high-quality bases. Use the FastQC output to determine length of high-quality positions. 20 20 * '''-n/--seedmms <int>''' max mismatches in seed (can be 0-3, default: -n 2) … … 31 31 Sample command: 32 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"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 34 }}} 35 35 36 The parameters used on the sample command are:36 The parameters included in the sample command are: 37 37 * '''-L <int>''' length of seed substrings; must be >3 and <32 (default=22) 38 38 * '''-N <int>''' max # mismatches in seed alignment; can be 0 or 1 (default=0) … … 42 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 43 44 '''Other tools''' 44 45 46 Many other regular mapping tools are also available, although they generally require a tool-specific indexed version of the genome. 45 47 46 48 == Splice-aware mappers == 49 50 These mappers permit the beginning and end of a read to map to (originate from) different places in the genome, which is common for spliced RNA. 51 52 '''[http://tophat.cbcb.umd.edu/ tophat version 1]''' 53 54 Running TopHat version 1 requires a change to a user's environment on tak (and only applies to the specific tak session. First run this command: 55 {{{ 56 export PATH="/usr/local/share/tophat1:$PATH" 57 }}} 58 and then check that your terminal will use the correct TopHat version: 59 {{{ 60 tophat --version 61 }}} 62 63 Sample command: 64 {{{ 65 bsub tophat -o s_7_tophat_out --phred64-quals --no-novel-juncs --segment-length 20 -G /nfs/genomes/mouse_gp_jul_07_no_random/gtf/Mus_musculus.NCBIM37.67_noNT.gtf /nfs/genomes/mouse_gp_jul_07_no_random/bowtie/mm9 s_7.txt 66 }}} 67 68 The parameters included in the sample command are: 69 * '''-o/--output-dir <word>''' All output files will be created in this directory (default = tophat_out) 70 * '''--phred64-quals''' (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]]