Skip to content

Commit 37db7f0

Browse files
committed
refactor: Add example moves
1 parent f6674e2 commit 37db7f0

File tree

6 files changed

+37
-0
lines changed

6 files changed

+37
-0
lines changed
File renamed without changes.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Profile config names for nf-core/configs
2+
params {
3+
// Specific nf-core/configs params
4+
config_profile_contact = 'Daniel Lundin ([email protected])'
5+
config_profile_description = 'nf-core/ampliseq UPPMAX profile provided by nf-core/configs'
6+
}
7+
8+
process {
9+
withName: classifier_extract_seq {
10+
clusterOptions = { "-A ${params.project} -p core -n 1 -t 7-00:00:00 ${params.clusterOptions ?: ''}" }
11+
}
12+
13+
withName: classifier_train {
14+
clusterOptions = { "-A ${params.project} -C fat -p node -N 1 -t 24:00:00 ${params.clusterOptions ?: ''}" }
15+
}
16+
17+
withName: classifier {
18+
clusterOptions = { "-A ${params.project} -C fat -p node -N 1 ${params.clusterOptions ?: ''}" }
19+
}
20+
}

conf/uppmax/pipeline/ampliseq.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# nf-core/configs: uppmax ampliseq specific configuration
2+
3+
Extra specific configuration for the ampliseq pipeline.
4+
5+
## Usage
6+
7+
To use, run the pipeline with `-profile uppmax`.
8+
9+
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.
10+
11+
Example: `nextflow run nf-core/ampliseq -profile uppmax`
12+
13+
## ampliseq specific configurations for uppmax
14+
15+
Specific configurations for UPPMAX has been made for ampliseq.
16+
17+
- Makes sure that a fat node is allocated for training and applying a Bayesian classifier.
File renamed without changes.

0 commit comments

Comments
 (0)