You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
however, in several places bam2peakshape.py refers to the .hist property of a PeakShapeResult or PeakShapeCounts object. Looking at the code, I'm getting the feeling that what is now counts was once called hist, but when it was renamed, not all instances of hist were caught.
This means that if bam2peakshape is called with the argument --use-strand the error:
AttributeError: 'PeakShapeResult' object has no attribute 'hist'
will be thrown. The correction should be simple, but this really should also be covered by a test. I would do it now, but I've got a butt load of lectures to write before next week. Maybe I'll get round it later.
The text was updated successfully, but these errors were encountered:
The PeakShapeResult class is defined in
bamtools.peakshape
thus:however, in several places
bam2peakshape.py
refers to the.hist
property of a PeakShapeResult or PeakShapeCounts object. Looking at the code, I'm getting the feeling that what is nowcounts
was once calledhist
, but when it was renamed, not all instances ofhist
were caught.This means that if bam2peakshape is called with the argument
--use-strand
the error:AttributeError: 'PeakShapeResult' object has no attribute 'hist'
will be thrown. The correction should be simple, but this really should also be covered by a test. I would do it now, but I've got a butt load of lectures to write before next week. Maybe I'll get round it later.
The text was updated successfully, but these errors were encountered: