mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Merge pull request #145 from bioatlas/master
Adding UPPMAX specific config for ampliseq
This commit is contained in:
commit
d1ff87a416
4 changed files with 35 additions and 1 deletions
|
@ -165,6 +165,7 @@ Currently documentation is available for the following pipeline within the speci
|
||||||
|
|
||||||
* ampliseq
|
* ampliseq
|
||||||
* [BINAC](docs/pipeline/ampliseq/binac.md)
|
* [BINAC](docs/pipeline/ampliseq/binac.md)
|
||||||
|
* [UPPMAX](docs/pipeline/ampliseq/uppmax.md)
|
||||||
* eager
|
* eager
|
||||||
* [SHH](docs/pipeline/eager/shh.md)
|
* [SHH](docs/pipeline/eager/shh.md)
|
||||||
* rnafusion
|
* rnafusion
|
||||||
|
|
15
conf/pipeline/ampliseq/uppmax.config
Normal file
15
conf/pipeline/ampliseq/uppmax.config
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
// Profile config names for nf-core/configs
|
||||||
|
|
||||||
|
params {
|
||||||
|
// Specific nf-core/configs params
|
||||||
|
config_profile_contact = 'Daniel Lundin (daniel.lundin@lnu.se)'
|
||||||
|
config_profile_description = 'nf-core/ampliseq UPPMAX profile provided by nf-core/configs'
|
||||||
|
}
|
||||||
|
|
||||||
|
withName: make_SILVA_132_16S_classifier {
|
||||||
|
clusterOptions = { "-A $params.project -C fat -p node -N 1 ${params.clusterOptions ?: ''}" }
|
||||||
|
}
|
||||||
|
|
||||||
|
withName: classifier {
|
||||||
|
clusterOptions = { "-A $params.project -C fat -p node -N 1 ${params.clusterOptions ?: ''}" }
|
||||||
|
}
|
17
docs/pipeline/ampliseq/uppmax.md
Normal file
17
docs/pipeline/ampliseq/uppmax.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# nf-core/configs: uppmax ampliseq specific configuration
|
||||||
|
|
||||||
|
Extra specific configuration for the ampliseq pipeline.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use, run the pipeline with `-profile uppmax`.
|
||||||
|
|
||||||
|
This will download and launch the ampliseq specific [`uppmax.config`](../../../conf/pipeline/ampliseq/uppmax.config) which has been pre-configured with a setup suitable for the UPPMAX cluster.
|
||||||
|
|
||||||
|
Example: `nextflow run nf-core/ampliseq -profile uppmax`
|
||||||
|
|
||||||
|
## ampliseq specific configurations for uppmax
|
||||||
|
|
||||||
|
Specific configurations for UPPMAX has been made for ampliseq.
|
||||||
|
|
||||||
|
* Makes sure that a fat node is allocated for training and applying a Bayesian classifier.
|
|
@ -10,4 +10,5 @@
|
||||||
|
|
||||||
profiles {
|
profiles {
|
||||||
binac { includeConfig "${params.custom_config_base}/conf/pipeline/ampliseq/binac.config" }
|
binac { includeConfig "${params.custom_config_base}/conf/pipeline/ampliseq/binac.config" }
|
||||||
}
|
uppmax { includeConfig "${params.custom_config_base}/conf/pipeline/ampliseq/uppmax.config" }
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue