Skip to content

Commit 01b0b2c

Browse files
committed
minor fix
1 parent 6f43aa9 commit 01b0b2c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

seqchromloader/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@ def compute_mean_std_bigwig(bigwig):
418418
# iterate all intervals to get the covered length
419419
length = sum([i[1]-i[0] for i in bw.intervals(chrom)])
420420
ns.append(length)
421-
means.append(bw.stats(chrom, type="mean", exact=True)[0])
421+
means.append(bw.stats(chrom, type="mean", exact=True))
422422
try:
423-
stds.append(bw.stats(chrom, type="std", exact=True)[0])
423+
stds.append(bw.stats(chrom, type="std", exact=True))
424424
except RuntimeError:
425425
logger.error(chrom)
426426
logger.error(length)

0 commit comments

Comments
 (0)