Mutation rate per epigenetic state
Closed this issue · 2 comments
Hi,
Using the ChromHMM states from Epigenomics Roadmap, I had a bigbed of the epigenomic state of each segment of the genome. I'd like to calculate the mutation rate in each genomic segment, based on the set of genome-wide variants in a single large VCF file.
I can see a slow way to do this via decomposing the bigbed into one BED per state, then calculating & aggregating the mutation rate via bedtools intersect
, but I was wondering if there was a clever way to do this in a single pass, directly from the bb, using WiggleTools?
many thanks,
Mark
One possible (far-fetched) approach would be to convert your Bigbed file into a Bigwig, transforming your discrete states into numerical values. You could then paint your VCF with the local state at each base pair as such (the segmentation state will end up at the end of each line):
wiggletools apply_paste - minI VCF.vcf segmentation.bw
Hi,
May I know how to calculate mutation rate using bedtools intersect?