Skip to content

Commit

Permalink
Merge pull request #155 from mskcc/ij/access_raise_walltime
Browse files Browse the repository at this point in the history
Ij/access raise walltime
  • Loading branch information
allanbolipata authored Mar 9, 2021
2 parents 41d92e2 + 4f372da commit 1b5924c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ridgeback/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__="1.7.0"
__version__="1.8.0"
5 changes: 1 addition & 4 deletions submitter/jobsubmitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,7 @@ def _prepare_directories(self):

def _job_args(self):
if "access" in self.app.github.lower():
if self.app.entrypoint == "workflows/ACCESS_pipeline.cwl":
return ["-W", "7200", "-M", "10"]
else:
return ["-W", "360", "-M", "5"]
return ["-W", "7200", "-M", "10"]
elif settings.LSF_WALLTIME:
return ['-W', settings.LSF_WALLTIME]
return []
Expand Down

0 comments on commit 1b5924c

Please sign in to comment.