-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrichment_shajahan.sh
43 lines (37 loc) · 1.33 KB
/
enrichment_shajahan.sh
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
python shajahan_make_gene_lists.py
# Run a phenotype enrichment on aal1D
echo "running phenotype enrichment on aal1D"
runoak -i sqlite:obo:fypo \
-G phaf -g data/phenotype_annotations.phaf \
enrichment -p i,p \
-U data/aal1D_Any_Two_Overlapped_list.txt \
-B data/aal1D_Background_list.txt \
-O csv -o results/aal1D_FYPO_enrichment.tsv \
--cutoff 0.05
# Run a go enrichment on aal1D
echo "running go enrichment on aal1D"
runoak -i sqlite:obo:go \
-G gaf -g data/gene_association.gaf \
enrichment -p i,p \
-U data/aal1D_Any_Two_Overlapped_list.txt \
-B data/aal1D_Background_list.txt \
-O csv -o results/aal1D_GO_enrichment.tsv \
--cutoff 0.05
# Run a phenotype enrichment on aal1OE
echo "running phenotype enrichment on aal1OE"
runoak -i sqlite:obo:fypo \
-G phaf -g data/phenotype_annotations.phaf \
enrichment -p i,p \
-U data/aal1OE_Any_Two_Overlapped_list.txt \
-B data/aal1OE_Background_list.txt \
-O csv -o results/aal1OE_FYPO_enrichment.tsv \
--cutoff 0.05
# Run a go enrichment on aal1OE
echo "running go enrichment on aal1OE"
runoak -i sqlite:obo:go \
-G gaf -g data/gene_association.gaf \
enrichment -p i,p \
-U data/aal1OE_Any_Two_Overlapped_list.txt \
-B data/aal1OE_Background_list.txt \
-O csv -o results/aal1OE_GO_enrichment.tsv \
--cutoff 0.05