forked from Illumina/SpliceAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.2.1: clean I/O handling, improved logs
- Loading branch information
Jaganathan
committed
Feb 21, 2019
1 parent
131fc38
commit 92378c4
Showing
7 changed files
with
52 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ build/ | |
dist/ | ||
*.egg-info/ | ||
.eggs/ | ||
*.flat | ||
*.gdx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
description='SpliceAI: A deep learning-based tool to identify splice variants', | ||
long_description=io.open('README.md', encoding='utf-8').read(), | ||
long_description_content_type='text/markdown', | ||
version='1.2', | ||
version='1.2.1', | ||
author='Kishore Jaganathan', | ||
author_email='[email protected]', | ||
license='GPLv3', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import signal | ||
from pkg_resources import get_distribution | ||
|
||
|
||
signal.signal(signal.SIGINT, lambda x, y: exit(0)) | ||
|
||
name = 'spliceai' | ||
__version__ = get_distribution(name).version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters