Skip to content

Commit

Permalink
slurm: add verbose support
Browse files Browse the repository at this point in the history
  • Loading branch information
rollinroy committed Aug 6, 2019
1 parent 98d5b21 commit 2be4b3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion TopmedPipeline.py
Expand Up @@ -817,7 +817,9 @@ def submitJob(self, **kwargs):
# -- cost
dockerOpts["--machine"] = theMachine
dockerOpts["--cost"] = theCost

# -- verbose
if self.verbose:
dockerOpts["--verbose"] = "True"
suboptStr = dictToString(submitOpts)
dockeroptStr = dictToString(dockerOpts)

Expand Down
3 changes: 2 additions & 1 deletion slurm_cfg.json
Expand Up @@ -83,7 +83,8 @@
"--mem_limit": null,
"--working_dir": null,
"--machine": null,
"--cost": null
"--cost": null,
"--verbose": null
}
}
}

0 comments on commit 2be4b3a

Please sign in to comment.