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
If someone using circlator 1.5.5 and canu 2.2 encounters the error:
'Found canu but couldn't get version'
The fix is to change the following line in external_progs.py:
external_progs.py
'canu': ('-version', re.compile(r'^Canu \D*([\d][\d\.]+)')),
for
'canu': ('-version', re.compile(r'^canu \D*([\d][\d\.]+)')),
The text was updated successfully, but these errors were encountered:
Here is my solution:
Install the specified version of Canu by “mamba install canu=1.5”.
Sorry, something went wrong.
I got around this by commenting out the problem in assemble.py. See this issue below.
#149
No branches or pull requests
If someone using circlator 1.5.5 and canu 2.2 encounters the error:
'Found canu but couldn't get version'
The fix is to change the following line in
external_progs.py
:for
The text was updated successfully, but these errors were encountered: