Skip to content
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

Comparing single base DNAString with single character causes stack error #51

Open
Shians opened this issue May 20, 2021 · 0 comments
Open

Comments

@Shians
Copy link

Shians commented May 20, 2021

Under Biostring 2.58.0 and R4.0.5 on both macOS and CentOS.

> Biostrings::DNAString("A") == "A"
Error: C stack usage  7969280 is too close to the limit

Preconverting either side of the comparison works fine

> as.character(Biostrings::DNAString("A")) == "A"
[1] TRUE
> Biostrings::DNAString("A") == Biostrings::DNAString("A")
[1] TRUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant