Changes between Version 8 and Version 9 of SOPs/InProgressChipSeq


Ignore:
Timestamp:
10/31/25 15:04:28 (3 days ago)
Author:
kdesilva
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/InProgressChipSeq

    v8 v9  
    6767
    6868{{{
    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"
     69sbatch --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"
     70sbatch --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"
    7171}}}
    7272
     
    9292Map with Bowtie, use --sam parameter to get a SAM output file
    9393{{{
    94 bsub "bowtie -t -m 3 -n 3 -l 36 --strata --best --solexa1.3-quals --sam inputSeq bowtieOutput.sam"
     94sbatch --job-name=bowtie_align --wrap="bowtie -t -m 3 -n 3 -l 36 --strata --best --solexa1.3-quals --sam inputSeq bowtieOutput.sam"
    9595}}}
    9696
     
    9898
    9999{{{
    100 bsub "samtools view -S -b -o bowtieOutput.bam bowtieOutput.sam"
     100sbatch --job-name=samtools_view_bowtie  --wrap="samtools view -S -b -o bowtieOutput.bam bowtieOutput.sam"
    101101-S       input is SAM
    102102-b       output BAM
     
    104104
    105105{{{
    106 bsub "bamToBed -i bowtieOutput.bam > bowtieOutput.bed"
     106sbatch --job-name=bamToBed  --wrap="bamToBed -i bowtieOutput.bam > bowtieOutput.bed"
    107107}}}
    108108