ARGnet-UI / scripts /argnet_ssaa.py
tracywong117's picture
initial commit
d9a04ad
Raw
History Blame Contribute Delete
5.47 kB
import Bio.SeqIO as sio
import tensorflow as tf
import numpy as np
from sklearn.preprocessing import LabelBinarizer
from tensorflow.keras.utils import to_categorical
import random
import os
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
import tqdm
#load model
filterm = tf.keras.models.load_model(os.path.join(os.path.dirname(__file__), '../model/AESS_tall.h5'))
classifier = tf.keras.models.load_model(os.path.join(os.path.dirname(__file__), '../model/classifier-ss_tall.h5'))
#encode, encode all the sequence to 1600 aa length
char_dict = {}
chars = 'ACDEFGHIKLMNPQRSTVWXYBJZ'
new_chars = "ACDEFGHIKLMNPQRSTVWXY"
for char in chars:
temp = np.zeros(22)
if char == 'B':
for ch in 'DN':
temp[new_chars.index(ch)] = 0.5
elif char == 'J':
for ch in 'IL':
temp[new_chars.index(ch)] = 0.5
elif char == 'Z':
for ch in 'EQ':
temp[new_chars.index(ch)] = 0.5
else:
temp[new_chars.index(char)] = 1
char_dict[char] = temp
### encode one test seqs
def newEncodeVaryLength(seq):
char = 'ACDEFGHIKLMNPQRSTVWXY'
if len(seq) in range(30, 40):
dimension1 = 32
if len(seq) in range(40, 50):
dimension1 = 48
if len(seq) == 50:
dimension1 = 64
train_array = np.zeros((dimension1,22))
for i in range(dimension1):
if i < len(seq):
train_array[i] = char_dict[seq[i]]
else:
train_array[i][21] = 1
return train_array
def test_newEncodeVaryLength(tests):
tests_seq = [newEncodeVaryLength(test) for test in tests]
return tests_seq
def encode64(seq):
char = 'ACDEFGHIKLMNPQRSTVWXY'
dimension1 = 64
train_array = np.zeros((dimension1,22))
for i in range(dimension1):
if i < len(seq):
train_array[i] = char_dict[seq[i]]
else:
train_array[i][21] = 1
return train_array
def testencode64(seqs):
encode = [encode64(test) for test in seqs]
encode = np.array(encode)
return encode
def prediction(seqs):
predictions = []
temp = filterm.predict(seqs, batch_size=8192)
predictions.append(temp)
return predictions
def reconstruction_simi(pres, ori):
simis = []
reconstructs = []
for index, ele in enumerate(pres[0]):
length = len(ori[index])
count_simi = 0
reconstruct = ''
for pos in range(length):
if chars[np.argmax(ele[pos])] == ori[index][pos]:
count_simi += 1
reconstruct += chars[np.argmax(ele[pos])]
simis.append(count_simi / length)
reconstructs.append(reconstruct)
return reconstructs, simis
cuts = [0.8275862068965517, 0.7, 0.6842105263157895]
def argnet_ssaa(input_file, outfile):
print('reading in test file...')
test = [i for i in sio.parse(input_file, 'fasta')]
test_ids = [ele.id for ele in test]
print('encoding test file...')
testencode = testencode64(test)
print('make prediction...')
testencode_pre = prediction(testencode) # if huge volumn of seqs (~ millions) this will be change to create batch in advance
reconstructs, simis = reconstruction_simi(testencode_pre, test)
passed_encode = [] ### notice list and np.array
passed_idx = []
notpass_idx = []
for index, ele in enumerate(simis):
if len(test[index]) in range(30, 40):
if ele >= cuts[0]:
#passed.append(test[index])
passed_encode.append(testencode[index])
passed_idx.append(index)
else:
notpass_idx.append(index)
if len(test[index]) in range(40, 50):
if ele >= cuts[1]:
passed_encode.append(testencode[index])
passed_idx.append(index)
else:
notpass_idx.append(index)
if len(test[index]) == 50:
if ele >= cuts[-1]:
passed_encode.append(testencode[index])
passed_idx.append(index)
else:
notpass_idx.append(index)
###classification
print('classifying...')
train_data = [i for i in sio.parse(os.path.join(os.path.dirname(__file__), "../data/train.fasta"),'fasta')]
train_labels = [ele.id.split('|')[3].strip() for ele in train_data]
encodeder = LabelBinarizer()
encoded_train_labels = encodeder.fit_transform(train_labels)
prepare = sorted(list(set(train_labels)))
label_dic = {}
for index, ele in enumerate(prepare):
label_dic[index] = ele
classifications = []
classifications = classifier.predict(np.stack(passed_encode, axis=0), batch_size = 2048)
out = {}
for i, ele in enumerate(passed_idx):
out[ele] = [np.max(classifications[i]), label_dic[np.argmax(classifications[i])]]
### output
print('writing output...')
with open(os.path.join(os.path.dirname(__file__), "../results/" + outfile) , 'w') as f:
f.write('test_id' + '\t' + 'ARG_prediction' + '\t' + 'resistance_category' + '\t' + 'probability' + '\n')
for idx, ele in enumerate(test):
if idx in passed_idx:
f.write(test[idx].id + '\t')
f.write('ARG' + '\t')
f.write(out[idx][-1] + '\t')
f.write(str(out[idx][0]) + '\n')
if idx in notpass_idx:
f.write(test[idx].id + '\t')
f.write('non-ARG' + '\t' + '' + '\t' + '' + '\n')