-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
62 lines (50 loc) · 2.02 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
manifest {
name = 'imputation-panels'
version = 'v0.1.1'
description = 'Create refereence panels for Michigan Imputation Server'
author = 'Sebastian Schönherr & Lukas Forer'
homePage = 'https://github.com/seppinho/imputation-panels'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
}
// Global default params, used in configs
params {
project = null
mode = null
recom_format_out = "vcf.gz"
files = null
target_length = 0
}
profiles {
debug { process.beforeScript = 'echo $HOSTNAME' }
process.container = 'quay.io/genepi/imputation-panels:v0.1.1'
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
development {
process.container = 'genepi/imputation-panels:latest'
docker.enabled = true
docker.userEmulation = true
resume = true
singularity.enabled = false
}
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
}
slurm {
process.executor = 'slurm'
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'terminate'}
maxErrors = '-1'
maxRetries = 3
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
}
}