-
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.
Moved an import statement in predict_loading_concentration:main from main() to the top. Edited setup.py to call the new predict_loading_concentration. Iterated version.
- Loading branch information
1 parent
cc561bd
commit b1f7cb8
Showing
2 changed files
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
from setuptools import setup | ||
|
||
setup(name='diva_seq_opt', | ||
version='0.0.3', | ||
version='0.0.4', | ||
description='Predict the library loading concentration to use for mi-seq runs based on bioanalyzer data.', | ||
url='https://github.com/JBEI/library_loading_concentration_prediction', | ||
author='Zak Costello', | ||
author_email='[email protected]', | ||
license='BSD', | ||
packages=['diva_seq_opt'], | ||
entry_points = { | ||
'console_scripts': ['predict_loading_concentration=diva_seq_opt.predict_loading_concentration:main'], | ||
'console_scripts': ['predict_loading_concentration=predict_loading_concentration:main'], | ||
}, | ||
install_requires=[ | ||
'pandas','numpy','scipy','matplotlib', | ||
'peakutils','sklearn','tpot' | ||
], | ||
include_package_data=True, | ||
zip_safe=False) | ||
zip_safe=False) |