Fix config
This commit is contained in:
parent
e2d83e14c9
commit
416b482a01
@ -4,11 +4,12 @@
|
|||||||
// The workflow should run without editing this configuration file,
|
// The workflow should run without editing this configuration file,
|
||||||
// however there may be instances in which you wish to edit this
|
// however there may be instances in which you wish to edit this
|
||||||
// file for compute performance or other reasons. Please see:
|
// file for compute performance or other reasons. Please see:
|
||||||
//
|
//
|
||||||
// https://nextflow.io/docs/latest/config.html#configuration
|
// https://nextflow.io/docs/latest/config.html#configuration
|
||||||
//
|
//
|
||||||
// for further help editing this file.
|
// for further help editing this file.
|
||||||
|
|
||||||
|
|
||||||
profiles {
|
profiles {
|
||||||
// the "standard" profile is used implicitely by nextflow
|
// the "standard" profile is used implicitely by nextflow
|
||||||
// if no other profile is given on the CLI
|
// if no other profile is given on the CLI
|
||||||
@ -20,12 +21,12 @@ profiles {
|
|||||||
runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
|
runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
|
||||||
}
|
}
|
||||||
process {
|
process {
|
||||||
withLabel:default {
|
withLabel:pysam {
|
||||||
container = 'workflow-template:latest'
|
container = 'workflow-template:latest'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// profile using conda environments rather than docker
|
// profile using conda environments rather than docker
|
||||||
// containers
|
// containers
|
||||||
conda {
|
conda {
|
||||||
@ -33,7 +34,7 @@ profiles {
|
|||||||
enabled = false
|
enabled = false
|
||||||
}
|
}
|
||||||
process {
|
process {
|
||||||
withLabel:default {
|
withLabel:pysam {
|
||||||
conda = "environment.yaml"
|
conda = "environment.yaml"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -32,7 +32,7 @@ if(params.help) {
|
|||||||
|
|
||||||
process readSeqs {
|
process readSeqs {
|
||||||
// Just write a file with sequence lengths
|
// Just write a file with sequence lengths
|
||||||
label "default"
|
label "pysam"
|
||||||
input:
|
input:
|
||||||
file reads
|
file reads
|
||||||
output:
|
output:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user