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
if (LegacyMode.Get() && alignmentSize > LEGACY_MAX_READ_LENGTH) continue;
if (!readLength) current_chrom = chromosomeMap(sequences[alignment.ChrID()].Name);
if (alignmentSize > readLength) readLength = alignment.Length();
The comparison is on alignmentSize, but the assignment is with alignment.Length(). Could this lead to unfortunate errors? Especially if alignment.Length() sometimes is less than alignmentSize
The text was updated successfully, but these errors were encountered:
I have noticed that RNA-seQC at times underestimates the Read Length
This is the section measuring read length:
rnaseqc/src/RNASeQC.cpp
Lines 274 to 277 in c426536
The comparison is on alignmentSize, but the assignment is with alignment.Length(). Could this lead to unfortunate errors? Especially if alignment.Length() sometimes is less than alignmentSize
The text was updated successfully, but these errors were encountered: