Changes between Version 8 and Version 9 of SOPs/InProgressChipSeq
- Timestamp:
- 10/31/25 15:04:28 (3 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/InProgressChipSeq
v8 v9 67 67 68 68 {{{ 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"69 sbatch --job-name=MACS14_BOWTIE --wrap="macs14 -t IP_mapped.map -c Control_mapped.map --name=outputName --format=BOWTIE --tsize=36 --wig --space=25 --mfold=10,30" 70 sbatch --job-name=MACS14_SAM --wrap="macs14 -t IP_mapped.sam -c Control_mapped.sam --name=outputName --format=SAM --tsize=36 --wig --space=25 --mfold=10,30" 71 71 }}} 72 72 … … 92 92 Map with Bowtie, use --sam parameter to get a SAM output file 93 93 {{{ 94 bsub"bowtie -t -m 3 -n 3 -l 36 --strata --best --solexa1.3-quals --sam inputSeq bowtieOutput.sam"94 sbatch --job-name=bowtie_align --wrap="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.bam bowtieOutput.sam"100 sbatch --job-name=samtools_view_bowtie --wrap="samtools view -S -b -o bowtieOutput.bam bowtieOutput.sam" 101 101 -S input is SAM 102 102 -b output BAM … … 104 104 105 105 {{{ 106 bsub"bamToBed -i bowtieOutput.bam > bowtieOutput.bed"106 sbatch --job-name=bamToBed --wrap="bamToBed -i bowtieOutput.bam > bowtieOutput.bed" 107 107 }}} 108 108
