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
idemp seg faults on line 299 (writing the .decode file) for some valid input files.
This happens whenever the input has at least one barcode that is too far from any of the barcodes. NNNNNNNNN triggers this problem for testing.
This happens because the loop that sets readBarcodeIdx[i] and readBarcodeMis[i] does not set an initial value for readBarcodeIdx and the conditionals enclosing the statements that assign readBarcodeIdx are sometimes not satisfied.
The text was updated successfully, but these errors were encountered:
Is there any fix for this type of problem? I noticed several instances of NNNNNNNNNNNN in my indexing reads and I keep getting a segmentation fault error.
idemp seg faults on line 299 (writing the .decode file) for some valid input files.
This happens whenever the input has at least one barcode that is too far from any of the barcodes. NNNNNNNNN triggers this problem for testing.
This happens because the loop that sets
readBarcodeIdx[i]
andreadBarcodeMis[i]
does not set an initial value forreadBarcodeIdx
and the conditionals enclosing the statements that assignreadBarcodeIdx
are sometimes not satisfied.The text was updated successfully, but these errors were encountered: