-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathReadData.py
More file actions
170 lines (141 loc) · 6.48 KB
/
ReadData.py
File metadata and controls
170 lines (141 loc) · 6.48 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import re
from DataStore import *
def ReadData(input_file, type):
line_split = re.compile('[\t,]')
def read_genenetweaver(input_file, type):
# In these data files it is column ordered,
# so the first column is time (for time series)
# and the rest are the genes. Separate time series
# experiments are delimited by a \n row.
print "Loading " + input_file + " as GeneNetWeaver type."
file = open(input_file, 'r')
file = file.readlines()
header = line_split.split(file.pop(0).replace('"','').replace("\n",'').strip())
datasets = []
# TODO: Add in non-timeseries GNW files
if type.lower() == "timeseries":
file.pop(0) # Burn first line
genes = header[1:] # removing the time column from the header
for ds in xrange(file.count('\n') + 1):
input_file = "Timeseries-Rep" + str(ds)
print file.count('\n'), input_file
# Read in each MicroArray
datasets.append(MicroarrayData(input_file, type, ds))
for i in range(len(genes)):
genes[i] = genes[i].strip()
datasets[ds].gene_list = map(str.strip,genes)
#print datasets
sep_exps = []
# Separate the different time series
prev_row = 0
for exp in xrange(len(datasets)):
#print prev_row, file.index('\n')
if '\n' in file[prev_row:]:
sep_exps.append(file[prev_row:file.index('\n')])
file = file[file.index('\n') + 1:len(file)]
else:
sep_exps.append(file[prev_row:])
# Create the experiments for each time point in the
# MicroarrayData class
for i, exp in enumerate(sep_exps):
for j, line in enumerate(exp):
ls = line_split.split(line)
#print ls
datasets[i].experiments.append(Experiment(ls[0].strip(), input_file, type))
for k, gene in enumerate(genes):
datasets[i].experiments[j].ratios[genes[k]] = float(ls[k+1].strip())
# Return steady state dataset
elif type == "dex":
gene_list = header
microarray = MicroarrayData(input_file, type)
gene_list = []
for e in exp_names:
microarray.experiments.append(Experiment(e, input_file, type))
for row in file:
row.replace("\r\n","")
row.replace("\n", "")
row = row.strip()
l = line_split.split(row)
gene = l[0]
gene_list.append(gene)
expressions = l[1:]
for i, e in enumerate(expressions):
microarray.experiments[i].ratios[gene] = float(e)
microarray.gene_list = gene_list
return microarray
elif type == "kranthi_data":
exp_names = header[2:]
microarray = MicroarrayData(input_file, type)
gene_list = []
for e in exp_names:
microarray.experiments.append(Experiment(e, input_file, type))
for row in file:
row.replace("\r\n","")
row.replace("\n", "")
row = row.strip()
l = line_split.split(row)
gene = l[1]
gene_list.append(gene)
expressions = l[2:]
for i, e in enumerate(expressions):
microarray.experiments[i].ratios[gene] = float(e)
microarray.gene_list = gene_list
return microarray
elif type == "dex_ts":
exp_names = header
# Take header, split into replicates and times
gene = l[0]
gene_list.append(gene)
else:
genes = map(str.strip, header)
print genes
microarray = MicroarrayData(input_file, type)
microarray.gene_list = genes
expmatrix = {}
for row in file:
expressions = row.split()
for i, e in enumerate(expressions):
if genes[i] not in expmatrix.keys():
expmatrix[genes[i]] = []
expmatrix[genes[i]].append(e)
for i in range(len(expmatrix[genes[0]])):
exp = Experiment(str(i), input_file, type)
for gene in genes:
exp.ratios[gene] = float(expmatrix[gene][i])
microarray.experiments.append(exp)
return microarray
return datasets
# def read_simple(input_file, type):
#"""This function is to read simple files that are just the
#header with the experiment name and then rows with:
#gene_name\texpression value"""
#dataset = MicroarrayData(input_file, type)
#print "Loading " + input_file + " as simple file type."
#file = open(input_file, 'r')
#file = file.readlines()
## TODO: Add support for different experiments in different files
#header = line_split.split(file[0])
#datasets = []
#names = []
#for i, exp_name in enumerate(header):
#if exp_name.strip() == "":
#continue
#exp = Experiment(exp_name.strip(), input_file, type)
##exp.ratios = {}
#datasets.experiments.append(exp)
##print "Found new experiment: " + exp.name
#for line in file[1:]:
#if len(line.strip()) <= 1 or line.strip()[0] == "#":
#continue
#line = line_split.split(line)
#gene_name = line[0]
#exp_values = line[1:len(datasets.experiments)+1]
#for i in xrange(len(exp_values)):
#exp_values[i] = exp_values[i].strip()
#try:
#datasets.experiments[i].ratios[gene_name.upper()] = float(exp_values[i])
#except:
#print "Warning: Expression value in " + datasets.experiments[i].file + " on line " + \
#str(i) + " will not read in as a float: " + exp_values[i] + "\n"
#datasets.experiments[i].ratios[gene_name.upper()] = exp_values[i]
return read_genenetweaver(input_file, type)