X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=scripts%2Frunfolder;fp=scripts%2Frunfolder;h=145fd7a5f1625e0d860841ccb2cf52a4a84bbfe5;hb=95b3ac5d181772ea57dce2833e487f136394d6f2;hp=76b5dd816b8cfa37a9ff6082dcee312440e6689c;hpb=6c636058f0e4ec88f4acf6b8a77f4b99b929f16f;p=htsworkflow.git diff --git a/scripts/runfolder b/scripts/runfolder index 76b5dd8..145fd7a 100644 --- a/scripts/runfolder +++ b/scripts/runfolder @@ -121,7 +121,12 @@ def main(cmdlist=None): runfolder.extract_run_parameters(runs) command_run = True if opt.extract_results: - runfolder.extract_results(runs, opt.output_dir, opt.site, opt.max_jobs) + if opt.dry_run: + parser.error("Dry-run is not supported for extract-results") + runfolder.extract_results(runs, + opt.output_dir, + opt.site, + opt.max_jobs) command_run = True if opt.clean: runfolder.clean_runs(runs, opt.dry_run)