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
now the method will first try to find an exact match in the hash table, if not then iterate the list of barcode until finding the hit. this applies to each read and the time for linear search increase significantly for the large dataset with thousands of cell barcodes.
a solution could be updating the hash table as we find a new closest match, to reduce the chance of linear search through the whole list.
The text was updated successfully, but these errors were encountered:
now the method will first try to find an exact match in the hash table, if not then iterate the list of barcode until finding the hit. this applies to each read and the time for linear search increase significantly for the large dataset with thousands of cell barcodes.
a solution could be updating the hash table as we find a new closest match, to reduce the chance of linear search through the whole list.
The text was updated successfully, but these errors were encountered: