-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-template.env
42 lines (35 loc) · 1.11 KB
/
config-template.env
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
#!/bin/bash
# To be edited by analysts
cohort_name="test"
analyst_name="Something McSomething"
analyst_email="[email protected]"
sftp_username="smcsomething"
genotype_input_list="/EDIT/THIS/PATH"
phenotype_input_dir="/EDIT/THIS/PATH"
phenotype_processed_dir="/EDIT/THIS/PATH"
genotype_processed_dir="/EDIT/THIS/PATH"
results_dir="/EDIT/THIS/PATH"
env_family_data="true"
# Provide either hg19 or hg38
genome_build="hg19"
# Add any study-specific covariate variables that must be included here.
# We expect this to correspond to a column name in $phenotype_input_dir/pheno_covariates.txt
# sex and yob are default that should be included
static_covariates="sex yob"
# Choose from one of EUR, EAS, SAS, AFR, AMR, MID
major_ancestry=""
# Provide a path to a sample inclusion list
# This should be formatted with just two columns (FID and IID)
# If it is left blank, all samples will be included
sample_inclusion_list=""
# Other parameters
env_minumum_strat_n="100"
env_n_pcs="10"
env_sparse_cutoff="0.05"
env_pca_sd=7
env_minmaf="0.01"
env_mininfo="0.8"
env_hwe="1e-6"
env_miss="0.05"
env_imiss="0.05"
env_threads=1