Skip to content

Commit

Permalink
Fix #928
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Mar 11, 2020
1 parent 0965841 commit 01997e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
3.4.1

* Fixed a bug in bamPEFragmentSize that caused incompatibility with newer matplotlib releases. (issue #928)

3.4.0

* Fixed a bug in one of the Galaxy wrappers.
Expand Down
2 changes: 1 addition & 1 deletion deeptools/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This file is originally generated from Git information by running 'setup.py
# version'. Distribution tarballs contain a pre-generated copy of this file.

__version__ = '3.4.0'
__version__ = '3.4.1'
2 changes: 1 addition & 1 deletion deeptools/bamPEFragmentSize.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def getDensity(lengths, minVal, maxVal):
This is essentially computing what hist() in matplotlib is doing and returning the results.
This then allows us to free up the memory consumed by each sample rather than returning it all back to main() for plotting.
"""
n, bins, patches = plt.hist(lengths, bins=100, range=(minVal, maxVal), normed=True)
n, bins, patches = plt.hist(lengths, bins=100, range=(minVal, maxVal), density=True)
plt.clf()
return (n, bins)

Expand Down
4 changes: 2 additions & 2 deletions galaxy/wrapper/deepTools_macros.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<macros>

<token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token>
<token name="@WRAPPER_VERSION@">3.4.0.0</token>
<token name="@WRAPPER_VERSION@">3.4.1.0</token>
<xml name="requirements">
<requirements>
<requirement type="package" version="3.4.0">deeptools</requirement>
<requirement type="package" version="3.4.1">deeptools</requirement>
<requirement type="package" version="1.9">samtools</requirement>
</requirements>
<expand macro="stdio" />
Expand Down

0 comments on commit 01997e0

Please sign in to comment.