-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add toil-lib dependency (resolves BD2KGenomics/toil#922) #434
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ def check_provided(distribution, min_version, max_version=None, optional=False): | |
author_email='[email protected]', | ||
url="https://github.com/BD2KGenomics/toil-scripts", | ||
install_requires=[ | ||
'tqdm==3.8.0', # FIXME: Remove once ADAM stops using it (superfluous import) | ||
'toil-lib==1.0.3', | ||
'pyyaml==3.11'], | ||
tests_require=[ | ||
'pytest==2.8.3'], | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,10 +42,11 @@ | |
|
||
import yaml | ||
from toil.job import Job | ||
from toil_lib import require | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 1 line of whitespace between There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I ran optimize imports before realizing it messed up the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PyCharm's |
||
from toil_lib.programs import docker_call | ||
from toil_lib.urls import s3am_upload | ||
|
||
from toil_scripts import download_from_s3_url | ||
from toil_scripts.lib import require | ||
from toil_scripts.lib.programs import docker_call | ||
from toil_scripts.lib.urls import s3am_upload | ||
from toil_scripts.rnaseq_cgl.rnaseq_cgl_pipeline import generate_file | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,10 +33,11 @@ | |
|
||
import yaml | ||
from toil.job import Job | ||
from toil_lib import require | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
from toil_lib.programs import docker_call | ||
from toil_lib.urls import s3am_upload | ||
|
||
from toil_scripts import download_from_s3_url | ||
from toil_scripts.lib import require | ||
from toil_scripts.lib.programs import docker_call | ||
from toil_scripts.lib.urls import s3am_upload | ||
from toil_scripts.rnaseq_cgl.rnaseq_cgl_pipeline import generate_file | ||
|
||
_log = logging.getLogger(__name__) | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
toil_lib
imports should be ahead oftoil_scripts
imports.