1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
#!/usr/bin/python3
"""
Create a site profile vector showing the average signal accumulated from a
bigwig file around the center of each interval from a BED file.
Output is the average signal value at that relative position across the
intervals.
usage: %prog bigwig_file.bw padding < bed_file.bed
"""
import sys
from numpy import (
float64,
floor,
int32,
isnan,
savetxt,
zeros,
)
from bx.bbi.bigwig_file import BigWigFile
from bx.intervals.io import GenomicIntervalReader
bw = BigWigFile(open(sys.argv[1]))
padding = int(sys.argv[2])
totals = zeros(padding * 2, dtype=float64)
valid = zeros(padding * 2, dtype=int32)
for interval in GenomicIntervalReader(sys.stdin):
center = floor((interval.start + interval.end) / 2)
values = bw.get_as_array(interval.chrom, center - padding, center + padding)
# Determine which positions had data and mask the rest for totalling
invalid = isnan(values)
values[invalid] = 0
totals += values
valid += ~invalid
savetxt(sys.stdout, totals / valid)
|