-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
50 lines (39 loc) · 1.12 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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file - set user paramters here
------------------------------------------------------------------------------
*/
// Load default parameters
includeConfig 'conf/defaults.config'
// User parameters - overide defaults and provide mandatory
params {
plink = './data/variants'
outdir = './results/'
binary_format = true
// QC Thresholds
missing_geno = 0.2
missing_indi = 0.2
maf = 0.01
hwe_control = 1e-6
hwe_case = 1e-10
het_sd = 3
pihat = 0.2
// Genes of Interest
gff3 = './data/genes_of_interest.gff3'
key = 'gene_id'
// Covariate
covar_file = './data/traits.phe'
covar_name = ['covar1', 'covar2']
// Phenotype
pheno_file = './data/traits.phe'
pheno_name = 'binary_trait'
zero_one = true
allow_no_sex = true
}
profiles {
docker {
includeConfig 'conf/docker.config'
includeConfig 'conf/modules.config'
docker.enabled = true
}
}