We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A test run with long read data and the following read splitting options resulted in an error:
read2tree [ ... options ... ] --read_type long --split_reads --split_len 20000 --split_overlap 1000
RuntimeError: generator raised StopIteration
This appears to be an issue with FastxReader.py caused by Python>=3.7, as detailed in https://stackoverflow.com/questions/51700960/runtimeerror-generator-raised-stopiteration-every-time-i-try-to-run-app
FastxReader.py
Recoding FastxReader.py (on my local machine) to handle the StopIteration as described in that post seems to fix the issue.
StopIteration
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A test run with long read data and the following read splitting options resulted in an error:
This appears to be an issue with
FastxReader.py
caused by Python>=3.7, as detailed in https://stackoverflow.com/questions/51700960/runtimeerror-generator-raised-stopiteration-every-time-i-try-to-run-appRecoding
FastxReader.py
(on my local machine) to handle theStopIteration
as described in that post seems to fix the issue.The text was updated successfully, but these errors were encountered: