-
Notifications
You must be signed in to change notification settings - Fork 9
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
integer underflow bug? #73
Comments
I think it is an underflow but I thought I fixed this. Just confirming but your filtered.fastq is extremely small right? |
You are right, it should be an underflow instead of an overflow. |
so as I understand the problem is there isn't enough reads to sample and every value should be 0 in that tsv aside from F1 so that is definitely a bug but what is the user's intention in using a file with only three reads? |
It's easier/better to run an assembler on a file and see if it fails or succeeds to assemble anything rather than predict if/when it will fail or succeed. |
@jowong4 |
We had quite a picnic with this bug, in our case it happened because ntCard uses the name of the read to determine the type of the file, not sure why this is even needed. The offending function is: getftype @ ntcard.cpp |
A user of RNA-Bloom had discovered a bug in ntCard version 1.2.2:
bcgsc/RNA-Bloom#43
Here are the first 10 lines from the output histogram file.
The output is bogus.
Shouldn't
F0
be >= 1 ifF1
is > 1?The values for the histogram are all
9223372036854775808
. I wonder if this is an integer underflow?Here is the exact command that was used:
I was able to replicate the exact same output as well.
The text was updated successfully, but these errors were encountered: