Skip to content

Commit

Permalink
🚚 Rename artifact.stage() to artifact.cache() (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf authored Jun 5, 2024
1 parent 67e7b26 commit 411e03e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/register_mcmicro_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
run = ln.dev.run_context.run

mcmicro_input = ln.Artifact.filter(key__startswith="exemplar-001")
input_paths = [input_fastq.stage() for input_fastq in mcmicro_input]
input_paths = [input_fastq.cache() for input_fastq in mcmicro_input]

output = ln.Artifact(
"exemplar-001/registration/exemplar-001.ome.tif", description="mcmicro"
Expand Down
2 changes: 1 addition & 1 deletion docs/register_nf_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
run = ln.dev.run_context.run

mcmicro_input = ln.Artifact.filter(key__startswith="exemplar-001")
input_paths = [input_fastq.stage() for input_fastq in mcmicro_input]
input_paths = [input_fastq.cache() for input_fastq in mcmicro_input]

output = ln.Artifact(
"exemplar-001/registration/exemplar-001.ome.tif", description="mcmicro"
Expand Down
4 changes: 2 additions & 2 deletions nextflow_bulk_rna.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@
},
"outputs": [],
"source": [
"input_sample_sheet_path = sample_sheet.stage()\n",
"input_paths = [input_fastq.stage() for input_fastq in input_fastqs]"
"input_sample_sheet_path = sample_sheet.cache()\n",
"input_paths = [input_fastq.cache() for input_fastq in input_fastqs]"
]
},
{
Expand Down

0 comments on commit 411e03e

Please sign in to comment.