The Pipy version of the code yields some coding errors in the python script (il6.py) that I managed to fix with the following replacements. Please feel free to use them as you want.
"script_directory" and "model_path" should be declared outside "Job == 1" so they can also work for "Job == 2" and "Job == 3".
Also, declaring there "clf" would make the code much quicker too, because specially in job == 2 an 3, you are loading the model inside the loop, for each sequence, which is quite inefficient.
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 (il6.py) that I managed to fix with the following replacements. Please feel free to use them as you want.
"script_directory" and "model_path" should be declared outside "Job == 1" so they can also work for "Job == 2" and "Job == 3".
Also, declaring there "clf" would make the code much quicker too, because specially in job == 2 an 3, you are loading the model inside the loop, for each sequence, which is quite inefficient.
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.