Closed vancurens closed 7 months ago
Traced this error back to a wrong not equal to call in the following lines of the "isoQC_function.R" code:
101 if(!is.null(min_length)){
102 min_length <- 200
103 }
This resulted in min_length
being overwritten when it was anything other than NULL, which is opposite of the expected behaviour. Corrected to the following:
101 if(is.null(min_length)){
102 min_length <- 200
103 }
Fixed in commit db2c0d0
The attached sample sequences result in a PASS in the isoQC step (leading to their inclusion in the taxonomy and library steps) despite having a trimmed sequencing length below the set threshold (400). isoQC_badtrimlen.zip
Example command:
Output: