forked from genepi/nf-gwas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
124 lines (102 loc) · 4.15 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
manifest {
name = 'nf-gwas'
version = '0.3.5'
description = 'A Nextflow GWAS pipeline.'
author = 'Lukas Forer and Sebastian Schönherr'
homePage = 'https://github.com/genepi/nf-gwas'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
}
// Global default params, used in configs
params {
//Required inputs
project = null
genotypes_array = null
genotypes_imputed = null
genotypes_build = null
genotypes_imputed_format = null
phenotypes_filename = null
phenotypes_columns = null
phenotypes_binary_trait = null
regenie_test = null
//Optional inputs
outdir = null
project_date = "`date`"
covariates_filename = 'NO_COV_FILE'
covariates_columns = ''
phenotypes_delete_missings = false
//SNP_PRUNING process
prune_enabled = false
prune_maf = 0.01
prune_window_kbsize = 1000
prune_step_size = 100
prune_r2_threshold = 0.9
//QC_FILTER process
qc_maf = '0.01'
qc_mac = '100'
qc_geno = '0.1'
qc_hwe = '1e-15'
qc_mind = '0.1'
//REGENIE_STEP1 + REGENIE_STEP_2 process
regenie_bsize_step1 = 1000
regenie_bsize_step2 = 400
regenie_sample_file = 'NO_SAMPLE_FILE'
regenie_skip_predictions = false
regenie_min_imputation_score = 0.00
regenie_min_mac = 5
regenie_range = ''
regenie_firth = true
regenie_firth_approx = true
regenie_force_step1 = false
regenie_ref_first = false
//FILTER_RESULTS step
annotation_min_log10p = 5
//REPORT process
plot_ylimit = 0
manhattan_annotation_enabled = true
}
// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
process.container = 'quay.io/genepi/nf-gwas:v0.3.5'
profiles {
debug { process.beforeScript = 'echo $HOSTNAME' }
test {
includeConfig 'conf/test.config'
}
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
}
development {
process.container = 'genepi/nf-gwas:latest'
docker.enabled = true
docker.userEmulation = true
resume = true
singularity.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
}
slurm_with_scratch {
process.executor = 'slurm'
process.scratch = true
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'terminate'}
maxErrors = '-1'
maxRetries = 3
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
}
}