-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti_snp_test.sh
More file actions
34 lines (27 loc) · 865 Bytes
/
multi_snp_test.sh
File metadata and controls
34 lines (27 loc) · 865 Bytes
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
#!/bin/bash -l
#$ -cwd
#$ -l h_data=4G,h_rt=0:30:00,highp
#$ -j y
#$ -o ./job_out
. /u/local/Modules/default/init/modules.sh
export PATH=~/project-pasaniuc/software/anaconda3/bin:$PATH
export PYTHONNOUSERSITE=True
export OPENBLAS_NUM_THREADS=1
export MKL_NUM_THREADS=1
region_i=${SGE_TASK_ID}
odds_ratio=1.2
anc_effect=0.0
case_prevalence=0.1
control_ratio=1.0
out_dir=out/multi_snp_test/cp_${case_prevalence}_cr_${control_ratio}/or_${odds_ratio}_ae_${anc_effect}
mkdir -p ${out_dir}
python experiment.py multi_snp_test_cli \
--data_dir data/geno/finemap_300 \
--odds_ratio ${odds_ratio} \
--anc_effect ${anc_effect} \
--region_size 41 \
--region_i ${region_i} \
--case_prevalence ${case_prevalence} \
--control_ratio ${control_ratio} \
--n_sim 50 \
--out ${out_dir}/region_${region_i}.csv.gz