Skip to content

Commit

Permalink
Rename rule for copying NCBI example data for clarity [#23]
Browse files Browse the repository at this point in the history
  • Loading branch information
genehack committed Dec 2, 2024
1 parent 0972a30 commit a1737c8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ingest/build-configs/ci/copy_example_data.smk
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a1737c8

Please sign in to comment.