diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-12-27 11:08:40 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-02-22 20:56:36 -0500 |
commit | 488e42ab371862196fe093aaff46b39fd513b390 (patch) | |
tree | cff2929258d782ae7ba57b080de686bad786a0fc /snakemake-file-targets | |
parent | e4a0916d3b60dc4b7e98db59a2c2e2db4bb71fea (diff) | |
download | snakemake-mode-488e42ab371862196fe093aaff46b39fd513b390.tar.gz |
snakemake-file-targets: Update Workflow call
The snakemakepath argument of Workflow was removed in Snakemake
v3.9.1 (062a2e0).
Diffstat (limited to 'snakemake-file-targets')
-rwxr-xr-x | snakemake-file-targets | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snakemake-file-targets b/snakemake-file-targets index 12dca78..6fdbad5 100755 --- a/snakemake-file-targets +++ b/snakemake-file-targets @@ -13,7 +13,7 @@ elif len(sys.argv) == 2 and sys.argv[1] not in ["-h", "--help"]: else: sys.exit(__doc__) -workflow = Workflow(snakefile=snakefile, snakemakepath="snakemake") +workflow = Workflow(snakefile=snakefile) workflow.include(snakefile) for rule in workflow.rules: |