-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_aggregates.sh
More file actions
22 lines (12 loc) · 1.17 KB
/
get_aggregates.sh
File metadata and controls
22 lines (12 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
source env_setup.sh
input="JSON"
modcre="pwm"
pvalue="0.005"
threshold=$(echo "$pvalue * 4"| bc -l)
length="50"
python ModCRElib/msa/aggregate_pwms.py --complete 0.95 -i ${input} --pvalue=$pvalue --threshold=$threshold -l $length --jaspar=ExternalPWMs/jaspar_pwms --cisbp=ExternalPWMs/CisBP_pwms --hocomoco=ExternalPWMs/hocomoco_pwms --modcre=${modcre} -o Aggregates/${input}_MAGG_PV${pvalue}_T${threshold}_L${length}_reference --verbose --info=Aggregates/info_${input}_MAGG_PV${pvalue}_T${threshold}_L${length}.log --reference 0.99 --trim --dummy=Aggregates/dummy_${input}_PV${pvalue}_T${threshold}_L${length}
#pvalue="0.005"
#threshold=$(echo "$pvalue * 10"| bc -l)
#length="50"
#python ModCRElib/msa/aggregate_pwms.py --complete 0.95 -i ${input} --pvalue=$pvalue --threshold=$threshold -l $length --jaspar=ExternalPWMs/jaspar_pwms --cisbp=ExternalPWMs/CisBP_pwms --hocomoco=ExternalPWMs/hocomoco_pwms --modcre=${modcre} -o Aggregates/${input}_MAGG_PV${pvalue}_T${threshold}_L${length}_reference --verbose --info=Aggregates/info_${input}_MAGG_PV${pvalue}_T${threshold}_L${length}.log --reference 0.99 --trim --dummy=Aggregates/dummy_${input}_PV${pvalue}_T${threshold}_L${length}