Skip to content

Commit

Permalink
Move import, update setup
Browse files Browse the repository at this point in the history
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
jdmccauley committed May 21, 2021
1 parent cc561bd commit b1f7cb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion predict_loading_concentration.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ def warn(*args, **kwargs):
from diva_seq_opt import utility
import argparse
import pickle
import matplotlib as mpl


def main():
#Allow Matplotlib to be used on commandline
import matplotlib as mpl
mpl.use('Agg')

#Handle inputs
Expand Down
6 changes: 3 additions & 3 deletions setup.py
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)

0 comments on commit b1f7cb8

Please sign in to comment.