-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 additions
and
24 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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
DNA methylation state from Nanopore reads.""" | ||
|
||
|
||
__version__ = '0.1.2' | ||
__version__ = '0.1.3' |
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ numpy>=1.15.3 | |
h5py>=2.8.0 | ||
statsmodels>=0.9.0 | ||
scikit-learn>=0.20.1 | ||
tensorflow==1.8.0 | ||
tensorflow>=1.8.0 |
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 |
---|---|---|
|
@@ -44,15 +44,17 @@ def run_tests(self): | |
keywords=['methylation', 'nanopore', 'neural network'], | ||
version=find_version('deepsignal', '__init__.py'), | ||
url='https://github.com/bioinfomaticsCSU/deepsignal', | ||
download_url='https://github.com/bioinfomaticsCSU/deepsignal/archive/v0.1.1.tar.gz', | ||
download_url='https://github.com/bioinfomaticsCSU/deepsignal/archive/v0.1.3.tar.gz', | ||
license='GNU General Public License v3 (GPLv3)', | ||
author='Peng Ni, Neng Huang', | ||
# tests_require=['pytest'], | ||
# TODO: when use python setup.py install, tensorflow>=1.8.0 may not work, | ||
# TODO: but it looks fine when using pip | ||
install_requires=['numpy>=1.15.3', | ||
'h5py>=2.8.0', | ||
'statsmodels>=0.9.0', | ||
'scikit-learn>=0.20.1', | ||
'tensorflow==1.8.0', | ||
'tensorflow>=1.8.0', | ||
], | ||
# cmdclass={'test': PyTest}, | ||
author_email='[email protected]', | ||
|