-
Notifications
You must be signed in to change notification settings - Fork 30
/
export.py
executable file
·379 lines (347 loc) · 16.2 KB
/
export.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
###export
#Copyright 2005-2008 J. David Gladstone Institutes, San Francisco California
#Author Nathan Salomonis - nsalomonis@gmail.com
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is furnished
#to do so, subject to the following conditions:
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
#INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
#PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
#HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
#OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
#SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""This module contains generic methods for creating export paths that include new
multiple nested folders and deleting all files within a directory."""
import os
import sys
import string
import unique
import shutil
import UI
if sys.platform == "win32":
mode = 'wb' ### writes as in a binary mode versus text mode which introduces extra cariage returns in Windows
else:
mode = 'w' ### writes text mode which can introduce extra carriage return characters (e.g., /r)
def filepath(filename):
fn = unique.filepath(filename)
return fn
def read_directory(sub_dir):
dir_list = unique.read_directory(sub_dir)
return dir_list
def getParentDir(filename):
filename = string.replace(filename,'//','/')
filename = string.replace(filename,'\\','/')
return string.split(filename,'/')[-2]
def findParentDir(filename):
### :: reverses string
filename = string.replace(filename,'//','/')
filename = string.replace(filename,'//','/') ### If /// present
filename = string.replace(filename,'\\','/')
x = string.find(filename[::-1],'/')*-1 ### get just the parent directory
return filename[:x]
def findFilename(filename):
filename = string.replace(filename,'//','/')
filename = string.replace(filename,'//','/') ### If /// present
filename = string.replace(filename,'\\','/')
x = string.find(filename[::-1],'/')*-1 ### get just the parent directory
return filename[x:]
def ExportFile(filename):
filename = string.replace(filename,'//','/')
filename = string.replace(filename,'\\','/')
dir = findParentDir(filename)
try: file_var = createExportFile(filename,dir)
except RuntimeError:
isFileOpen(filename,dir)
file_var = createExportFile(filename,dir)
return file_var
def customFileMove(old_fn,new_fn):
old_fn = filepath(old_fn)
new_fn = filepath(new_fn)
raw = ExportFile(new_fn)
for line in open(old_fn,'rU').xreadlines():
if line[0]!='#': ### Applies to Affymetrix APT data (screws up combat)
raw.write(line)
raw.close()
os.remove(old_fn)
def customFileCopy(old_fn,new_fn):
old_fn = filepath(old_fn)
new_fn = filepath(new_fn)
raw = ExportFile(new_fn)
for line in open(old_fn,'rU').xreadlines():
if line[0]!='#': ### Applies to Affymetrix APT data (screws up combat)
raw.write(line)
raw.close()
def isFileOpen(new_file,dir):
try:
file_open = 'yes'
dir_list = read_directory(dir)
if len(dir_list)>0:
while file_open == 'yes':
file_open = 'no'
for file in dir_list:
if file in new_file: ###Thus the file is open
try:
fn=filepath(new_file);
file_var = open(fn,mode)
"""
except Exception:
try: os.chmod(fn,0777) ### It's rare, but this can be a write issue
except Exception:
print "This user account does not have write priveledges to change the file:"
print fn,"\nPlease login as an administrator or re-install the software as a non-admin.";sys.exit()
file_var = open(fn,'w')"""
file_open = 'no'
except IOError:
print_out = 'Results file: '+fn+ '\nis open...can not re-write.\nPlease close file and select "OK".'
try: UI.WarningWindow(print_out,' OK ');
except Exception:
print print_out; print 'Please correct (hit return to continue)'
inp = sys.stdin.readline()
file_open = 'yes'
except OSError: null = []
def createExportFile(new_file,dir):
try:
#isFileOpen(new_file,dir) ###Creates problems on Mac - not clear why
fn=filepath(new_file)
file_var = open(fn,mode)
"""except Exception:
try: os.chmod(fn,0777) ### It's rare, but this can be a write issue
except Exception:
print "This user account does not have write priveledges to change the file:"
print fn,"\nPlease login as an administrator or re-install the software as a non-admin.";sys.exit()
file_var = open(fn,'w')"""
except Exception:
createExportDir(new_file,dir) ###Occurs if the parent directory is also missing
fn=filepath(new_file)
file_var = open(fn,mode)
"""except Exception:
try: os.chmod(fn,0777) ### It's rare, but this can be a write issue
except Exception:
print "This user account does not have write priveledges to change the file:"
print fn,"\nPlease login as an administrator or re-install the software as a non-admin.";sys.exit()
file_var = open(fn,'w')"""
return file_var
def createExportDirAlt(new_file,dir):
### Original method for creating a directory path that is not present
### Works by going backwards (not ideal)
dir = string.replace(dir,'//','/')
dir = string.replace(dir,'\\','/')
dir = string.replace(dir,'\\','/')
dir_ls = string.split(dir,'/')
if len(dir_ls) != 1:
index = 1
while index < (len(dir_ls)+1):
parent_dir = string.join(dir_ls[:index],'/')
index+=1
try:pfn = filepath(parent_dir); os.mkdir(pfn)
except OSError: continue
createExportFile(new_file,dir)
else: print "Parent directory not found locally for", dir_ls
def createExportDir(new_file,dir):
### New method for creating a directory path that is not present
### Works by going forward (check if a base path is present and then go up)
dir = string.replace(dir,'//','/')
dir = string.replace(dir,'\\','/')
dir = string.replace(dir,'\\','/')
dir = filepath(dir)
dir_ls = string.split(dir,'/')
i = 1; paths_added = 'no'
while i <= len(dir_ls):
new_dir = string.join(dir_ls[:i],'/')
status = verifyDirectory(new_dir)
if status == 'no':
try: os.mkdir(new_dir); paths_added = 'yes'
except Exception: paths_added = 'yes'
i+=1
if paths_added == 'yes':
try:
fn=filepath(new_file)
file_var = open(fn,mode)
except Exception:
print "Parent directory not found locally for", [dir,new_file]
#else: print "Parent directory not found locally for", [dir,new_file]; sys.exit()
def createDirPath(dir):
### New method for creating a directory path that is not present
### Works by going forward (check if a base path is present and then go up)
dir = string.replace(dir,'//','/')
dir = string.replace(dir,'\\','/')
dir = string.replace(dir,'\\','/')
dir = filepath(dir)
dir_ls = string.split(dir,'/')
i = 1; paths_added = 'no'
while i <= len(dir_ls):
new_dir = string.join(dir_ls[:i],'/')
status = verifyDirectory(new_dir)
if status == 'no':
try: os.mkdir(new_dir); paths_added = 'yes'
except Exception: paths_added = 'yes'
i+=1
def verifyDirectory(dir):
try: dir_list = read_directory(dir); verified = 'yes'
except Exception: verified = 'no'
#print 'verify',[dir],verified
if verified == 'no': ### Can occur for the AltDatabase dir, since EnsMart62 will be added an not found
try: dir_list = os.listdir(dir); verified = 'yes'
except Exception: verified = 'no'
return verified
def createExportFolder(dir):
dir = string.replace(dir,'//','/')
dir = string.replace(dir,'\\','/')
dir = string.replace(dir,'\\','/')
dir_ls = string.split(dir,'/')
if len(dir_ls) != 1:
index = 1
while index < (len(dir_ls)+1):
parent_dir = string.join(dir_ls[:index],'/')
index+=1
#print "Trying to create the directory:",parent_dir
try:
pfn = filepath(parent_dir)
#print pfn
os.mkdir(pfn)
#print parent_dir, 'written' #, index-1, len(dir_ls)
except OSError:
#print "Can not write this dir"
#break
continue
else: print "Parent directory not found locally for", dir_ls
def cleanUpLine(line):
line = string.replace(line,'\n','')
line = string.replace(line,'\c','')
data = string.replace(line,'\r','')
data = string.replace(data,'"','')
return data
def cleanFile(source_file,removeExtra=None):
### Some files have extra odd encoding that results in blank new lines in the extracted file
### For succeptible directories copy all files line by line, removing existing end of lines
file = findFilename(source_file); temp_file = 'tempdir/'+file
data = ExportFile(temp_file)
fn=filepath(source_file)
for line in open(fn,'rU').xreadlines():
line = cleanUpLine(line)
writeFile=True
if removeExtra!=None:
if line[0]==removeExtra: writeFile=False
if len(line)>0 and writeFile: data.write(line+'\n')
data.close()
### Replace old file with new file
copyFile(temp_file,source_file)
os.remove(temp_file)
print 'copied',file
def cleanAndFilterAllFiles(source_dir,output_dir,filter_file):
fn=filepath(filter_file)
filter_ids={} ### gene, protein and transcript IDs
for line in open(fn,'rU').xreadlines():
line = cleanUpLine(line)
filter_ids[line]=[]
#source_file = '/Users/saljh8/Desktop/testX/AltAnalyze/AltXDatabase/EnsMart72/goelite/Hs/gene-interactions/Ensembl-BioGRID.txt'
#destination_file = '/Users/saljh8/Desktop/testX/AltAnalyze/AltXDatabase/EnsMart72_filtered/goelite/Hs/gene-interactions/Ensembl-BioGRID.txt'
#cleanAndFilterFile(source_file,destination_file,filter_ids);sys.exit()
exclude_names = ['.DS','EntrezGene', 'HMDB', 'DrugBank']
for root, subFolders, files in os.walk(source_dir):
for f in files:
exclude = False
for i in exclude_names:
if i in f: exclude = True
if exclude==False:
source_file = root+'/'+f
destination_file = string.replace(source_file,source_dir,output_dir)
cleanAndFilterFile(source_file,destination_file,filter_ids)
def cleanAndFilterFile(source_file,destination_file,filter_ids):
data = ExportFile(destination_file)
count=0
firstLine=True
for line in open(source_file,'rU').xreadlines():
if firstLine:
data.write(line)
firstLine=False
else:
writeOut=False
line = cleanUpLine(line)
t = string.split(line,'\t')
if t[0] in filter_ids:
writeOut=True
elif ':' in t[0]:
uid = string.split(t[0],':')[0]
if uid in filter_ids:
writeOut=True
else:
if len(t)>1:
if t[1] in filter_ids:
writeOut=True
elif ':' in t[1]:
uid = string.split(t[1],':')[0]
if uid in filter_ids:
writeOut=True
if len(t)>2:
if t[2] in filter_ids:
writeOut=True
if len(t)>3:
if t[3] in filter_ids:
writeOut=True
if len(t)>4:
if t[4] in filter_ids:
writeOut=True
if len(t)>5:
if t[5] in filter_ids:
writeOut=True
if writeOut:
data.write(line+'\n')
count+=1
data.close()
print 'copied',source_file
if count==0: ### There are no relevant entries in the file, so copy over the entire file
print '*****',source_file
copyFile(source_file,destination_file)
def copyFile(source_file,destination_file):
dir = findParentDir(destination_file)
try: createExportFolder(dir)
except Exception: null=[] ### already exists
shutil.copyfile(source_file,destination_file)
#print '\nFile copied to:',destination_file
def deleteFolder(dir):
try:
dir = filepath(dir); dir_list = read_directory(dir) ### Get all files in directory
#try: print 'deleting dir:',dir
#except Exception: null=None ### Occurs due to a Tkinter issue sometimes
for file in dir_list:
fn = filepath(dir+'/'+file)
try:
if '.' in file: os.remove(fn)
else: deleteFolder(fn) ### Remove subdirectories
except Exception: None
os.removedirs(dir)
#print dir
return 'success'
except OSError: return 'failed'
if __name__ == '__main__':
import getopt
source_dir=None
filter_file=None
output_dir=None
print 'Filtering AltAnalyze Database based on supplied Ensembl gene, protein and transcript IDs'
if len(sys.argv[1:])<=1: ### Indicates that there are insufficient number of command-line arguments
print 'please provide sufficient arguments (--source, --destination, --filter)',sys.exit()
#Filtering samples in a datasets
#python SampleSelect.py --i /Users/saljh8/Desktop/C4-hESC/ExpressionInput/exp.C4.txt --f /Users/saljh8/Desktop/C4-hESC/ExpressionInput/groups.C4.txt
else:
options, remainder = getopt.getopt(sys.argv[1:],'', ['source=','destination=','filter='])
#print sys.argv[1:]
for opt, arg in options:
if opt == '--source': source_dir=arg
elif opt == '--destination': output_dir=arg
elif opt == '--filter': filter_rows=True
output_file = input_file[:-4]+'-filtered.txt'
if filter_file != None and source_dir != None and output_dir != None:
cleanAndFilterAllFiles(source_dir,output_dir,filter_file)
sys.exit()
customFileCopy('/Volumes/SEQ-DATA/IlluminaBodyMap/pooled/pooled/Thyroid-ERR030872__exons.bed','/Volumes/SEQ-DATA/IlluminaBodyMap/pooled/Thyroid-ERR030872__exons.bed');sys.exit()
createExportFolder('Databases/null/null'); sys.exit()
createExportDir('C:/Users/Nathan Salomonis/Desktop/Gladstone/1-datasets/RNASeq/hESC-NP/TopHat-hESC_differentiation/AltExpression/pre-filtered/counts/a.txt','C:/Users/Nathan Salomonis/Desktop/Gladstone/1-datasets/RNASeq/hESC-NP/TopHat-hESC_differentiation/AltExpression/pre-filtered/counts'); sys.exit()
deleteFolder('BuildDBs/Entrez/Gene2GO');kill
fn = '/Users/nsalomonis/Desktop/GSE13297_RAW//AltExpression/ExonArray/Hs/Hs_Exon_CS_vs_hESC.p5_average.txt'
createExportFile(fn,'/Users/nsalomonis/Desktop/GSE13297_RAW//AltExpression/ExonArray/Hs')
ExportFile(fn)