circlator
circlator copied to clipboard
Found canu but couldn't get version. (canu 2.2)
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
:
'canu': ('-version', re.compile(r'^Canu \D*([\d][\d\.]+)')),
for
'canu': ('-version', re.compile(r'^canu \D*([\d][\d\.]+)')),
Here is my solution:
Install the specified version of Canu by “mamba install canu=1.5”.
I got around this by commenting out the problem in assemble.py. See this issue below.
https://github.com/sanger-pathogens/circlator/issues/149