-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
65 lines (53 loc) · 1.68 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
manifest {
name = 'pre-imputation-qc'
version = '1.3.0'
description = 'A Nextflow pipeline to clean genotyped data and prepare it for genotype imputation on Michigan Imputation Server.'
author = 'Lukas Forer'
homePage = 'https://github.com/lukfor/pre-imputation-qc'
mainScript = 'main.nf'
nextflowVersion = '!>=21.04.0'
}
// Global default params, used in configs
params {
project = null
project_date = "`date`"
input = null
input_csv = null
output = "output/genotyped"
chip = null
build = null
strand_file = null
refalt_file = null
chunkSize= 20000000
minSampleCallRate = 0.5
minSnpCallRate = 0.9
maf = 0
hwe = 1E-6
cleanSampleIds = false
excludeSamples = null
useDoubleId = true
reference = [
vcf: null
]
}
docker.enabled = true
process.container = 'quay.io/genepi/pre-imputation-qc:v1.3.0'
profiles {
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
}
development {
process.container = 'genepi/pre-imputation-qc:latest'
docker.enabled = true
docker.userEmulation = true
resume = true
singularity.enabled = false
}
}