-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal_length_fs.py
395 lines (353 loc) · 12.2 KB
/
cal_length_fs.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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
import re
import os
import numpy as np
from sklearn.model_selection import StratifiedKFold
from extract_seq_for_graph import extract
from build_graph_batch_minimap2 import build
from align_genome_to_graph import align
from generate_token_from_graph import generate_fg
from generate_token_from_alignment import generate_at
from generate_token_from_ps import generate_tps
from generate_token_from_ps_predict import generate_tpsp
def build_dir(idir):
if not os.path.exists(idir):
os.makedirs(idir)
def run_prodigal_rgi(dr,odir):
gdir=odir+'/Genes'
ginfo=odir+'/Genes_info'
pdir=odir+'/Proteins'
rgi=odir+'/RGI_raw'
build_dir(gdir)
build_dir(ginfo)
build_dir(pdir)
build_dir(rgi)
for s in dr:
#print(s)
#exit()
os.system('prodigal -i '+dr[s]+' -o '+ginfo+'/'+s+'.genes -d '+gdir+'/'+s+'.fa'+' -a '+pdir+'/'+s+'.faa')
#os.system('/home/heruiliao2/anaconda3/envs/rgi/bin/rgi main --input_sequence '+gdir+'/'+s+'.fa --output_file '+rgi+'/'+s+' --local --clean -n 32')
#exit()
return gdir,pdir
def copy_genome(gdir,index,odir,t):
bfix=''
if t=='gene':
bfix='fa'
else:
bfix='txt'
for i in index:
os.system('cp '+gdir+'/'+i+'.'+bfix+' '+odir)
def copy_protein(pdir,index,odir):
for i in index:
os.system('cp '+pdir+'/'+i+'.faa '+odir)
def filter_rgi(indir,drug,mfile,odir):
f=open(mfile,'r')
d={}
line=f.readline()
if not os.path.exists(odir):
os.makedirs(odir)
while True:
line=f.readline().strip()
if not line:break
ele=line.split('\t')
if ele[1]==drug:
if drug not in d:d[drug]={}
cl=re.split(';',ele[-1])
for c in cl:
d[drug][c]=''
for filename in os.listdir(indir):
if re.search('json',filename):
os.system('cp '+indir+'/'+filename+' '+odir)
continue
o=open(odir+'/'+filename,'w+')
f=open(indir+'/'+filename,'r')
line=f.readline()
o.write(line)
while True:
line=f.readline().strip()
if not line:break
for c in d[drug]:
if re.search(c,line):
o.write(line+'\n')
break
def merge_all_proteins(indir,odir,t):
os.system('cat '+indir+'/* >'+odir+'/merged_proteins_'+t+'.fa')
return odir+'/merged_proteins_'+t+'.fa'
def run_cdhit(ptrain,pval,work_dir):
# Run CD-Hit on all training proteins
os.system('cd-hit -i '+ptrain+' -d 0 -o '+work_dir+'/merge_train_cdhit -c 0.9 -n 5 -M 0')
# Run CD-Hit on test proteins
os.system('cd-hit-2d -i '+ptrain+' -i2 '+pval+' -d 0 -o '+work_dir+'/merge_val_cdhit -c 0.9 -n 5 -M 0')
cls1=work_dir+'/merge_train_cdhit.clstr'
cls2=work_dir+'/merge_val_cdhit.clstr'
return cls1,cls2
def output_pc_token_file(d,pdir,label,ofile,idx):
dr={} # Strain prefix -> Tokens string
for filename in os.listdir(pdir):
pre=re.split('\.',filename)[0]
if pre not in dr:
dr[pre]=[]
f=open(pdir+'/'+filename,'r')
contigs=[]
dc={} # contigs -> token list
while True:
line=f.readline().strip()
if not line:break
if not re.search('>',line):continue
ele=line.split()
pid=re.sub('>','',ele[0])
if pid not in d:continue
ct=re.split('_',pid)
ct='_'.join(ct[:-1])
if ct not in contigs:
contigs.append(ct)
if ct not in dc:
dc[ct]=[]
dc[ct].append(d[pid])
'''
if pre=='573_46831':
print(contigs)
print(dc)
exit()
'''
tem=[] # all contig tokens
for c in contigs:
tem.append(','.join(dc[c]))
dr[pre]=',0,'.join(tem)
#print(dr)
#exit()
f=open(label,'r')
o=open(ofile,'w+')
line=f.readline().strip()
o.write(line+'\tTokens_Num\tTokens\n')
while True:
line=f.readline().strip()
if not line:break
ele=line.split('\t')
if ele[0] not in idx:continue
o.write(line+'\t')
arr=re.split(',',dr[ele[0]])
o.write(str(len(arr))+'\t'+dr[ele[0]]+'\n')
o.close()
def generate_tokens_from_cdhit(work_dir,label,train,val):
f=open(work_dir+'/merge_train_cdhit.clstr','r')
o=open(work_dir+'/pc_matches.txt','w+')
dcls={} # Cls_ID -> proteins
arr=[]
while True:
line=f.readline().strip()
if not line:break
if re.search('Cluster',line):
cls=re.sub('>','',line)
cls=re.sub(' ','_',cls)
if cls not in arr:
arr.append(cls)
if cls not in dcls:
dcls[cls]={}
else:
pre=line.split()[2]
pre=re.sub('>','',pre)
pre=re.sub('\.\.\.','',pre)
dcls[cls][pre]=''
d={} # proteins -> token_ID | without single cluster
i=1
for c in arr:
if len(dcls[c])==1:continue
for p in dcls[c]:
d[p]=str(i)
o.write(str(i)+'\t'+p+'\n')
i+=1
f2=open(work_dir+'/merge_val_cdhit.clstr','r')
d2={} # For val samples: proteins -> token_ID | without single cluster
while True:
line=f2.readline().strip()
if not line:break
if re.search('Cluster',line):continue
pre=line.split()[2]
pre=re.sub('>','',pre)
pre=re.sub('\.\.\.','',pre)
if line[-1]=='*':
if pre in d:
tid=d[pre]
else:
tid='NA'
else:
if not tid=='NA':
d2[pre]=tid
output_pc_token_file(d,work_dir+'/proteins_train',label,work_dir+'/strains_train_pc_token.txt',train)
output_pc_token_file(d2,work_dir+'/proteins_val',label,work_dir+'/strains_val_pc_token.txt',val)
def run_ps(train,val,ingenome,label,drug,work_dir):
o=open('tem.pheno','w+')
o.write('ID\tAddress\t'+drug+'\n')
dtrain={} # Pre -> Genome dir
dval={}
for filename in os.listdir(ingenome):
pre=re.split('\.',filename)[0]
if pre in train:
dtrain[pre]=ingenome+'/'+filename
elif pre in val:
dval[pre]=ingenome+'/'+filename
dl={}
arr_train=[]
arr_val=[]
f=open(label,'r')
line=f.readline().strip()
while True:
line=f.readline().strip()
if not line:break
ele=line.split('\t')
dl[ele[0]]=ele[1]
if ele[0] in train:
arr_train.append(ele[0])
elif ele[0] in val:
arr_val.append(ele[0])
for a in arr_train:
o.write(a+'\t'+dtrain[a]+'\t'+dl[a]+'\n')
o.close()
#exit()
os.system('/computenodes/node35/team3/herui/AMR_data/Phenotype_Seeker_data/PhenotypeSeeker/.PSenv/bin/phenotypeseeker modeling tem.pheno')
o2=open('ps_inf1.txt','w+')
o3=open('ps_inf2.txt','w+')
for a in arr_val:
o2.write(a+'\t'+dval[a]+'\n')
o2.close()
o3.write(drug+'\tlog_reg_model_'+drug+'.pkl')
o3.close()
os.system('/computenodes/node35/team3/herui/AMR_data/Phenotype_Seeker_data/PhenotypeSeeker/.PSenv/bin/phenotypeseeker prediction ps_inf1.txt ps_inf2.txt')
#exit()
generate_tps(drug+'_MLdf.csv',label,work_dir+'/strains_train_kmer_token.txt','tem_token_id.txt',train)
#exit()
generate_tpsp('tem_token_id.txt','K-mer_lists',label,work_dir+'/strains_val_kmer_token.txt',val)
os.system('rm -rf K-mer_lists')
os.system('rm tem.pheno ps_inf1.txt ps_inf2.txt')
os.system('mv tem_token_id.txt '+work_dir+'/kmer_token_id.txt')
def cal_len(infile1):
f=open(infile1,'r')
line=f.readline()
ms=0
while True:
line=f.readline().strip()
if not line:break
ele=line.split('\t')
if int(ele[-2])>ms:
ms=int(ele[-2])
'''
f=open(infile2,'r')
line=f.readline()
while True:
line=f.readline().strip()
if not line:break
ele=line.split('\t')
if int(ele[-2])>ms:
ms=int(ele[-2])
'''
return ms
def scan_length_fs(odir):
o=open(odir+'/longest_len_fs.txt','w+')
o.write('Graph\tPC\tKmer\n')
#for filename in os.listdir(odir):
#if not re.search('Fold',filename):continue
ls1=cal_len(odir+'/strains_train_sentence_fs.txt')
ls2=cal_len(odir+'/strains_train_pc_token_fs.txt')
ls3=cal_len(odir+'/strains_train_kmer_token.txt')
o.write(str(ls1)+'\t'+str(ls2)+'\t'+str(ls3)+'\n')
def scan_length_fs_shap(odir):
o=open(odir+'/longest_len_fs_shap.txt','w+')
o.write('Graph\tPC\tKmer\n')
ls1=cal_len(odir+'/strains_train_sentence_fs_shap_filter.txt')
ls2=cal_len(odir+'/strains_train_pc_token_fs_shap_filter.txt')
ls3=cal_len(odir+'/strains_train_kmer_token_shap_filter.txt')
o.write(str(ls1)+'\t'+str(ls2)+'\t'+str(ls3)+'\n')
def run(ingenome,label,odir,drug,mfile):
dr={}
for filename in os.listdir(ingenome):
pre=re.split('\.',filename)[0]
#print(filename)
#print(pre)
#exit()
dr[pre]=ingenome+'/'+filename
# Run prodigal and rgi for all input genomes
print('Run Prodigal and RGI for all input genomes!',flush=True)
#gdir,pdir=run_prodigal_rgi(dr,odir)
gdir=odir+'/Genes'
pdir=odir+'/Proteins'
#exit()
#filter_rgi(odir+'/RGI_raw',drug,mfile,odir+'/RGI')
#exit()
f=open(label,'r')
line=f.readline()
x=[]
y=[]
while True:
line=f.readline().strip()
if not line:break
ele=line.split()
#print(ele)
#exit()
x.append(ele[0])
y.append(ele[1])
x=np.array(x)
y=np.array(y)
splits=StratifiedKFold(n_splits=3,shuffle=True,random_state=1234)
datasets=splits.split(x,y)
c=1
for train_idx,val_idx in datasets:
print('Fold '+str(c)+' starts!',flush=True)
if c==2:
c+=1
continue
#print(len(y[train_idx]),len(y[val_idx]))
#exit()
train=x[train_idx]
val=x[val_idx]
########### Preprocess ###########
work_dir=odir+'/Fold'+str(c)
build_dir(work_dir)
tem_gt=work_dir+'/genes_train'
tem_pt=work_dir+'/proteins_train'
tem_rt=work_dir+'/rgi_train'
build_dir(tem_gt)
build_dir(tem_pt)
build_dir(tem_rt)
tem_gv=work_dir+'/genes_val'
tem_pv=work_dir+'/proteins_val'
tem_rv=work_dir+'/rgi_val'
build_dir(tem_gv)
build_dir(tem_pv)
build_dir(tem_rv)
copy_genome(odir+'/Genes',train,tem_gt,'gene')
copy_genome(odir+'/RGI',train,tem_rt,'rgi')
copy_genome(odir+'/Genes',val,tem_gv,'gene')
copy_genome(odir+'/RGI',val,tem_rv,'rgi')
copy_protein(odir+'/Proteins',train,tem_pt)
copy_protein(odir+'/Proteins',val,tem_pv)
########### Graph-based tokens ###########
gt=work_dir+'/Genomes_train'
gv=work_dir+'/Genomes_val'
extract(tem_rt,tem_gt,gt)
extract(tem_rv,tem_gv,gv)
graph=work_dir+'/GFA_train_Minimap2'
build(gt,graph)
align_res=work_dir+'/Align_val_res'
align(gv,graph,align_res)
generate_fg(graph,tem_gt,work_dir+'/strains_train_sentence.txt',work_dir+'/node_token_match.txt',label)
generate_at(label,align_res,work_dir+'/node_token_match.txt',tem_gv,work_dir+'/strains_val_sentence.txt')
#exit()
############### PC tokens ############
ptrain=merge_all_proteins(tem_pt,work_dir,'train')
pval=merge_all_proteins(tem_pv,work_dir,'val')
#exit()
cls1,cls2=run_cdhit(ptrain,pval,work_dir)
generate_tokens_from_cdhit(work_dir,label,train,val)
#exit()
############### K-mer tokens ##########
run_ps(train,val,ingenome,label,drug,work_dir)
#exit()
#train=x[train_idx]
#val=x[val_idx]
c+=1
scan_length(odir)
#exit()
#run('../../Ref_Genome','cdi_label.txt','Cdi_3fold')
#run('../../../Sau/Ref_Genome','sau_label.txt','Sau_3fold')
#run('../../Ecoli/Ref_Genome','ecoli_label.txt','Ecoli_3fold','levofloxacin','drug_to_class.txt')
#run('../../Kcp/Ref_Genome','kcp_label.txt','Kcp_3fold','ceftazidime-avibactam','drug_to_class.txt')