Skip to content

Commit

Permalink
Merge pull request #474 from nextflow-io/add_params.outdir_to_hello-n…
Browse files Browse the repository at this point in the history
…f-test_configs

Add params.outdir to hello-nf-test configurations which are required with nextflow v24.10.0 and later
  • Loading branch information
kenibrewer authored Nov 20, 2024
2 parents edec19b + 102a842 commit 5220a95
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 5220a95

Please sign in to comment.