The Pipy version of the code yields some coding errors in the python script (toxinpred3.py) when there is only 1 input sequence in the fasta, that I managed to fix with the following replacements. Please feel free to use them as you want.
Line 83: data_test1 = np.loadtxt(file_name, delimiter=',')
data_test1 = np.loadtxt(file_name, delimiter=',', ndmin=2)
Line 84: data_test2 = np.loadtxt(file_name, delimiter=',')
data_test2 = np.loadtxt(file_name, delimiter=',', ndmin=2)
There are probably other ways to fix it, I have seen other software of yours that have similar codes but that actually work.
Best wishes.
The Pipy version of the code yields some coding errors in the python script (toxinpred3.py) when there is only 1 input sequence in the fasta, that I managed to fix with the following replacements. Please feel free to use them as you want.
Line 83: data_test1 = np.loadtxt(file_name, delimiter=',')
data_test1 = np.loadtxt(file_name, delimiter=',', ndmin=2)
Line 84: data_test2 = np.loadtxt(file_name, delimiter=',')
data_test2 = np.loadtxt(file_name, delimiter=',', ndmin=2)
There are probably other ways to fix it, I have seen other software of yours that have similar codes but that actually work.
Best wishes.