diff --git a/ingest/build-configs/ci/copy_example_data.smk b/ingest/build-configs/ci/copy_example_data.smk index c013789..790b0c7 100644 --- a/ingest/build-configs/ci/copy_example_data.smk +++ b/ingest/build-configs/ci/copy_example_data.smk @@ -1,12 +1,11 @@ -rule copy_example_data: +rule copy_example_ncbi_data: input: ncbi_dataset="example-data/ncbi_dataset.zip" output: ncbi_dataset=temp("data/ncbi_dataset.zip") shell: - """ + r""" cp -f {input.ncbi_dataset} {output.ncbi_dataset} """ - # force this rule over NCBI data fetch -ruleorder: copy_example_data > fetch_ncbi_dataset_package +ruleorder: copy_example_ncbi_data > fetch_ncbi_dataset_package