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
Description When using edlib.align with an empty query and task='path', the cigar is 'None'.
To Reproduce
result = edlib.align("", "abc", task="path") edlib.getNiceAlignment(result, "", "abc")
This raises the following error :
Exception: The object alignResult contains an empty CIGAR string. Users must run align() with task='path'. Please check the input alignResult
Expected behavior In my opinion, the cigar should indicate 3 deletions from the target in this case :
cigar = 3D
Environment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When using edlib.align with an empty query and task='path', the cigar is 'None'.
To Reproduce
This raises the following error :
Expected behavior
In my opinion, the cigar should indicate 3 deletions from the target in this case :
Environment
The text was updated successfully, but these errors were encountered: