-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
I'd like to use pyBigWig to collect values at many intervals from many bigwigs, and I'd love to know what's performant.
- is there overhead to opening a bigwig with pyBigWig? i.e. what's the runtime difference between:
with pyBigWig.open(bigwig_file) as bw:
for chrom, start, stop in intervals:
bw.values(chrom, start, stop)
and
for chrom, start, stop in intervals:
with pyBigWig.open(bigwig_file) as bw:
bw.values(chrom, start, stop)
-
If the former is optimal, is there any advantage to the
intervalsbeing sorted? -
Do you know relative performance of pyBigWig
entries()queries of bigBed files versus tabix queries of gzipped bed files?
Metadata
Metadata
Assignees
Labels
No labels