-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uberBlast.py / parseDiamond: FileNotFoundError #24
Comments
I dumped some stuff here: Line 552 in c2c8a19
How I dumped: if not os.path.isfile(f'{aaMatch}.{id}'):
import random, string
with open(f'logs/{"".join(random.choice(string.ascii_letters) for i in range(10))}', 'w') as f:
f.write(f'CMD= {diamond_cmd}\n')
f.write(f'CMD_split= {diamond_cmd.split()}\n')
f.write(f'STDOUT:\n')
f.write(stdout)
f.write(f'\nSTDERR:\n')
f.write(stderr) This creates 25 files, the contains is always very similar. Here's an example:
If I prevent the deletion of the temporary folder and execute the command after the fact, it works. This is the command I mean:
|
I get this error message:
The error does not cause the program to crash and I get seemingly normal output. Even step 2 seems to work normally.
What does that mean?!
This is how I installed PEPPAN:
Also:
See also full_output.zip
The text was updated successfully, but these errors were encountered: