Skip to content

Commit

Permalink
Add params.outdir to hello-nf-test configurations which are required …
Browse files Browse the repository at this point in the history
…with nextflow v24.10.0 and later
  • Loading branch information
adamrtalbot authored Nov 20, 2024
1 parent 38d3263 commit 210ace5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/hello_nextflow/08_hello_nf-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -1083,6 +1083,9 @@ params {
// Primary input (file of input files, one per line)
reads_bam = "${projectDir}/data/sample_bams.txt"
// Output directory
params.outdir = "results_genomics"
// Accessory files
reference = "${projectDir}/data/ref/ref.fasta"
reference_index = "${projectDir}/data/ref/ref.fasta.fai"
Expand Down
4 changes: 4 additions & 0 deletions hello-nextflow/solutions/hello-nf-test/tests/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ params {
// Primary input (file of input files, one per line)
reads_bam = "${projectDir}/data/sample_bams.txt"


// Output directory
params.outdir = "results_genomics"

// Accessory files
reference = "${projectDir}/data/ref/ref.fasta"
reference_index = "${projectDir}/data/ref/ref.fasta.fai"
Expand Down

0 comments on commit 210ace5

Please sign in to comment.