Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Commit

Permalink
Bugfix: ribocount: allow creation of zip files larger than 2GB
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalkvn committed Mar 4, 2017
1 parent 1705349 commit e2c81c7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======
0.3.1 (2017-03-04)
------------------
* Bugfix: ribocount: allow creation of zip files larger than 2GB.

0.3.0 (2015-12-10)
------------------
* Support for multiple read lengths and corresponding offsets.
Expand Down
2 changes: 1 addition & 1 deletion riboplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Vimalkumar Velayudhan'
__email__ = '[email protected]'
__version__ = '0.3.0'
__version__ = '0.3.1'
2 changes: 1 addition & 1 deletion riboplot/ribocount.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def main(args):

log.info('Creating zip file')
os.chdir(output_path)
with zipfile.ZipFile('ribocount_output.zip', 'w') as zipf:
with zipfile.ZipFile('ribocount_output.zip', 'w', allowZip64=True) as zipf:
for root, d, f in os.walk('ribocount_output'):
for name in f:
zipf.write(os.path.join(root, name))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name='riboplot',
version='0.3.0',
version='0.3.1',
description="Plot read counts of RiboSeq data from BAM format alignment files",
long_description=readme + '\n\n' + history,
author="Vimalkumar Velayudhan",
Expand Down

0 comments on commit e2c81c7

Please sign in to comment.