-
Notifications
You must be signed in to change notification settings - Fork 11
/
gsea_ranks.py
executable file
·51 lines (43 loc) · 1.46 KB
/
gsea_ranks.py
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
#!/usr/bin/env python
from optparse import OptionParser
import gsea
################################################################################
# gsea_ranks.py
#
# Print out the ranks for a given GO term.
################################################################################
################################################################################
# main
################################################################################
def main():
usage = 'usage: %prog [options] <cors file> <GO term>'
parser = OptionParser(usage)
(options,args) = parser.parse_args()
if len(args) != 2:
parser.error('Must provide correlations file')
else:
cors_file = args[0]
go_term = args[1]
# get genes, correlations
correlations_genes = []
genes = []
for line in open(cors_file):
a = line.split()
correlations_genes.append((abs(float(a[1])),a[0]))
genes.append(a[0])
correlations_genes.sort(reverse=True)
# GO
go_map, go_descs = gsea.read_go(set(genes))
go_term_map = go_map[go_term]
# print ranks, correlations
i = 1
for (cor,gene) in correlations_genes:
if gene in go_term_map:
print i, cor
i += 1
################################################################################
# __main__
################################################################################
if __name__ == '__main__':
main()
#pdb.runcall(main)