Skip to content

Commit

Permalink
Merge branch 'hotfix/2.1.1'
Browse files Browse the repository at this point in the history
* Fixed the bug: when no `-gs` is supplied, tools exits with "File not not found" error.
  • Loading branch information
Yaobo Xu committed May 1, 2020
2 parents 80ab45e + 5bee256 commit 0c0d848
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ htmlcov
.idea
.pytest_cache*
pyCRISPRcleanR.egg-info/
/.vscode
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# CHANGES
## 2.1.1
* Fixed the bug: when no `-gs` is supplied, tools exits with "File not not found" error.

## 2.1.0
* Fixed so that plots aren't generated when not enough data

Expand Down
2 changes: 1 addition & 1 deletion pyCRISPRcleanR/crisprCleanR_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
configdir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'config/')
results_json = configdir + 'results.json'
log_config = configdir + 'logging.conf'
ref_genes = configdir + 'ref_genes'
ref_genes = configdir + 'ref_genes.tar.gz'
logging.config.fileConfig(log_config)
log = logging.getLogger(__name__)

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.1.0',
'version': '2.1.1',
'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 0c0d848

Please sign in to comment.