Skip to content

Commit

Permalink
Removed a dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevy44 committed Aug 12, 2019
1 parent b04187a commit 517e6da
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion methylnet.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pymethylprocess
ruamel.yaml
modin
statsmodels
mlxtend
2 changes: 1 addition & 1 deletion methylnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from . import *
__version__ = '0.1'
__version__ = '0.1.2'
1 change: 1 addition & 0 deletions methylnet/torque_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def run_torque_job_(replace_dict, additional_options=""):
with open('torque_job.sh','w') as f:
f.write(txt)
job=os.popen("mksub {} {}".format('torque_job.sh',additional_options)).read().strip('\n')
print("Submitted job: {}".format(job))
return job

def assemble_run_torque(command, use_gpu, additions, queue, time, ngpu, additional_options=""):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
packages=['methylnet'],
install_requires=['pymethylprocess',
'ruamel.yaml',
'modin',
#'modin',
'statsmodels',
'mlxtend'])

0 comments on commit 517e6da

Please sign in to comment.