-
Notifications
You must be signed in to change notification settings - Fork 0
/
gwas.config
77 lines (55 loc) · 1.97 KB
/
gwas.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
includeConfig 'configs/local.config'
params {
indir = "/nf-gwas-pipeline/data"
outdir = "/nf-gwas-pipeline/results"
vcf_list = "${params.indir}/toy_vcf.csv"
gds_list = "${params.indir}/toy_gds.csv"
pheno = "${params.indir}/pheno_file_logistic.csv"
phenotype = "outcome"
covars = "age,sex"
// -----------------------------------------------------
// QC
// -----------------------------------------------------
qc = false
gds_input = true
// -----------------------------------------------------
// PCA and GRM
// -----------------------------------------------------
pca_grm = false
snpset = "null"
grm = "null"
// -----------------------------------------------------
// Null Model Parameters
// -----------------------------------------------------
model = "logistic"
test = "Score.SPA"
// -----------------------------------------------------
// GWAS Parameters
// -----------------------------------------------------
gwas = true
imputed = true
// -----------------------------------------------------
// Gene-based Analysis Parameters
// -----------------------------------------------------
gene_based = false
max_maf = 0.5
method = "Burden"
// (only hg19 available for now)
// -----------------------------------------------------
// Genome-wide longitudinal Analysis Parameters
// -----------------------------------------------------
longitudinal = false
random_slope = "null"
// -----------------------------------------------------
// Summary_plot Parameters
// -----------------------------------------------------
group = "group"
dosage = false
min_maf = 0.1
max_pval_manhattan = 0.9999999
// -----------------------------------------------------
// Annotation Parameters
// -----------------------------------------------------
max_pval = 0.99
ref_genome = "hg19"
}