Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
sb43 committed Nov 12, 2018
2 parents 6294e65 + 79e47ef commit be2b0f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGES

## 2.0.6
* Added explicit file handler close to avoid empty files in the results archive

## 2.0.5
* Updated version tag in setup.py
## 2.0.4
Expand Down
2 changes: 2 additions & 0 deletions pyCRISPRcleanR/staticMethods.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,8 @@ def write_results(result_cfg, outdir):
f.write(cfg['table_row_folders'].format(**rows))

f.write(cfg['footer'])
# added explicit close to include file in the results archive
f.close()
# crete final results tar file...
StaticMthods._create_tar(outdir + '/' + RESULTS_FILE + file_ext, outdir)
except IOError as ioe:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

config = {
'version': '2.0.5',
'version': '2.0.6',
'name': 'pyCRISPRcleanR',
'description': 'This is python implementation of CRISPRcleanR package for unsupervised identification and correction of gene independent cell responses to CRISPR-cas9 targeting',
'author': 'Shriram Bhosle',
Expand Down

0 comments on commit be2b0f3

Please sign in to comment.