Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
switched keep intermediate to remove-intermediate, to make it a consi…
…ous descicion to remove the intermediate files
  • Loading branch information
proost committed Dec 1, 2016
1 parent f95cd37 commit 7c36d66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion run.py
Expand Up @@ -107,7 +107,7 @@ def run_pipeline(args):
parser.add_argument('--skip-orthofinder', dest='orthofinder', action='store_false', help='add --skip-orthofinder to skip the orthology detection')
parser.add_argument('--skip-mcl-families', dest='mcl_families', action='store_false', help='add --skip-mcl to skip clustering blast with MCL')

parser.add_argument('--keep-intermediate', dest='keep_intermediate', action='store_true', help='add --keep-intermediate to prevent the pipeline from removing finished steps')
parser.add_argument('--remove-intermediate', dest='keep_intermediate', action='store_false', help='add --remove-intermediate to clear trimmomatic and tophat files after completing those steps')
parser.add_argument('--disable-log', dest='enable_log', action='store_false',
help='add --disable-log to disable writing additional statistics.')

Expand All @@ -129,6 +129,7 @@ def run_pipeline(args):
parser.set_defaults(orthofinder=True)
parser.set_defaults(mcl_families=True)

parser.set_defaults(keep_intermediate=True)
parser.set_defaults(enable_log=True)

# Parse arguments and start pipeline
Expand Down

0 comments on commit 7c36d66

Please sign in to comment.