You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the software stops to work ad exit when number of R1 reads is greater then number of R2.
The error is because in fastq-lib.cpp qual.n returns -1 for the last record of the second file you pass :
if (fq->qual.n <= 0)
return 0;
and then with other reads it consequently fails.
But when R1 is lower, we still have -1, for reads 2, but the cycle stops and the error disappear.
When R1 reads is greater then number of R2, if you exchange the file in the command line, it works again.
If you have time...
Thank you.
&
The text was updated successfully, but these errors were encountered:
It seems the software stops to work ad exit when number of R1 reads is greater then number of R2.
The error is because in fastq-lib.cpp qual.n returns -1 for the last record of the second file you pass :
if (fq->qual.n <= 0)
return 0;
and then with other reads it consequently fails.
But when R1 is lower, we still have -1, for reads 2, but the cycle stops and the error disappear.
When R1 reads is greater then number of R2, if you exchange the file in the command line, it works again.
If you have time...
Thank you.
&
The text was updated successfully, but these errors were encountered: