Skip to content

Commit

Permalink
Merge pull request #472 from nextflow-io/params_in_wrong_locatiaon
Browse files Browse the repository at this point in the history
  • Loading branch information
kenibrewer authored Nov 20, 2024
2 parents ecea2fe + b79be32 commit 38d3263
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 56 deletions.
39 changes: 21 additions & 18 deletions hello-nextflow/hello-modules/nextflow.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
docker.fixOwnership = true

/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Output directory
params.outdir = "results_genomics"

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}

profiles {
docker_on {
docker.enabled = true
Expand Down Expand Up @@ -47,21 +68,3 @@ process {
cpus = 4
}
}

/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}
40 changes: 20 additions & 20 deletions hello-nextflow/hello-nf-test/nextflow.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
docker.fixOwnership = true

// Default output directory
params.outdir = 'results_genomics'
/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Output directory
params.outdir = "results_genomics"

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}

profiles {
docker_on {
Expand Down Expand Up @@ -50,21 +68,3 @@ process {
cpus = 4
}
}

/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}
41 changes: 23 additions & 18 deletions hello-nextflow/solutions/hello-config/5-nextflow.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
docker.fixOwnership = true


/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Output directory
params.outdir = "results_genomics"

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}


profiles {
docker_on {
docker.enabled = true
Expand Down Expand Up @@ -44,21 +67,3 @@ process {
cpus = 4
}
}

/*
* Pipeline parameters
*/

params {
// Primary input (file of input files, one per line)
reads_bam = null

// Accessory files
reference = null
reference_index = null
reference_dict = null
intervals = null

// Base name for final output file
cohort_name = "my_cohort"
}

0 comments on commit 38d3263

Please sign in to comment.