Changes between Version 7 and Version 8 of SOPs/InProgressChipSeq
- Timestamp:
- 05/14/14 16:04:35 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/InProgressChipSeq
v7 v8 46 46 47 47 Sample commands to run MACS (current version as of March 5 2012): 1.4.2 using mapped reads in map or sam format: 48 49 {{{ 50 macs -t ./s7_mouse_mm9.k1.n2.l36.best.map -c ./s8_control_mouse_mm9.k1.n2.l36.best.map -g 1.87e9 --name=outputName --format=BOWTIE --tsize=36 --wig --space=25 --mfold=10,30 51 macs -t ./s7_mouse_mm9.k1.n2.l36.best.sam -c ./s8_control_mouse_mm9.k1.n2.l36.best.sam -g 1.87e9 --name=outputName --format=SAM --tsize=36 --wig --space=25 --mfold=10,30 52 macs -t ./s7_mouse_mm9.k1.n2.l36.best.sam -c ./s8_control_mouse_mm9.k1.n2.l36.best.sam -g 1.87e9 --name=outputName --format=SAM --tsize=36 --wig --space=25 --nomodel --shiftsize=100 53 54 }}} 48 {{{ 49 macs -t IP_mapped.map -c Control_mapped.map -g 1.87e9 --name=outputName --format=BOWTIE --tsize=36 --wig --space=25 --mfold=10,30 50 macs -t IP_mapped.sam -c Control_mapped.sam -g 1.87e9 --name=outputName --format=SAM --tsize=36 --wig --space=25 --mfold=10,30 51 macs -t IP_mapped.sam -c Control_mapped.sam -g 1.87e9 --name=outputName --format=SAM --tsize=36 --wig --space=25 --nomodel --shiftsize=100 52 }}} 53 55 54 56 55 The parameters used on the command are: … … 68 67 69 68 {{{ 70 bsub "macs14 -t ./s7_mouse_mm9.k1.n2.l36.best.map -c ./s8_control_mouse_mm9.k1.n2.l36.best.map --name=outputName --format=BOWTIE --tsize=36 --wig --space=25 --mfold=10,30" 71 bsub "macs14 -t ./s7_mouse_mm9.k1.n2.l36.best.sam -c ./s8_control_mouse_mm9.k1.n2.l36.best.sam --name=outputName --format=SAM--tsize=36 --wig --space=25 --mfold=10,30" 72 }}} 69 bsub "macs14 -t IP_mapped.map -c Control_mapped.map --name=outputName --format=BOWTIE --tsize=36 --wig --space=25 --mfold=10,30" 70 bsub "macs14 -t IP_mapped.sam -c Control_mapped.sam --name=outputName --format=SAM --tsize=36 --wig --space=25 --mfold=10,30" 71 }}} 72 73 73 74 74 ''Note'': The wig files that macs14 generates are not normalized. … … 90 90 SISSRs uses strand bimodality to try to find the summit of the peak. The summit should be very close to the DNA bound by the TF. It is more appropriate for TFs because they tend to bind in specific narrow regions. 91 91 92 Map with Bowtie, use --sam parameter to get a sam ouput file93 {{{ 94 bsub "bowtie -t -m 3 -n 3 -l 36 --strata --best --solexa1.3-quals --saminputSeq bowtieOutput.sam"92 Map with Bowtie, use --sam parameter to get a SAM output file 93 {{{ 94 bsub "bowtie -t -m 3 -n 3 -l 36 --strata --best --solexa1.3-quals --sam inputSeq bowtieOutput.sam" 95 95 }}} 96 96 … … 98 98 99 99 {{{ 100 bsub "samtools view -S -b -o bowtieOutput.bambowtieOutput.sam"100 bsub "samtools view -S -b -o bowtieOutput.bam bowtieOutput.sam" 101 101 -S input is SAM 102 102 -b output BAM … … 109 109 Run SISSRs with a sample command like 110 110 {{{ 111 sissrs.pl -i bowtieOutput.bed -o outputFile-s 2716965481 -b Background.bed -L 200111 sissrs.pl -i bowtieOutput.bed -o outputFile -s 2716965481 -b Background.bed -L 200 112 112 }}} 113 113