No, it's not multiple wiggle file. It's multiple BED file. I just want to find some peaks appears in most of the H3K4me3 samples
How To Pile Up Multiple Bed Files Into 1 File
I want to pileup a set of BED files (all from H3K4me3) to see some generic site of this Histone Modification.
However, I haven't found a suitable tool to do that..
I'm using a awkward way to do that, like this:
- cat all BED files into 1 BED file
- use bedtools to convert the BED file to BAM file
- use samtools' mpileup command to pileup the BAM file
At last, the result is a large BAM file and very time-consuming.
Does anybody know a easier way to do that?
• 5,783 views
•
link
3 answers
You could use pipes to help with streamlining the steps, if you're not already. You could try bedtools genomeCoverageBed to do the pileup instead of samtools.
• 0 views
•
link
Do you want to do a display like they have for the histone modifications on the UCSC browser now? Those are called "multi wig". See if this info helps: http://biowhat.ucsd.edu/homer/ngs/ucsc.html
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.