Skip to content
Snippets Groups Projects
Commit 30dcd4b2 authored by Yohan Jarosz's avatar Yohan Jarosz
Browse files

debug some errors

parent 4f770a63
No related branches found
No related tags found
No related merge requests found
......@@ -148,8 +148,11 @@ def run(args):
# if --enter flag is specified, change the command
if args['--enter']:
cmd += ['/bin/bash']
cmd = ' '.join(cmd) + format_command(' '.join(args['COMMANDS']), '/output')
cmd = ' '.join(cmd)
else:
if not args['COMMANDS']:
args['COMMANDS'] = 'snakemake ALL'
cmd = ' '.join(cmd) + format_command(' '.join(args['COMMANDS']), '/output')
print("Executing", '"', cmd, '"')
subprocess.call(cmd, shell=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment