GuillaumeHolley / BloomFilterTrie

An alignment-free, reference-free and incremental data structure for colored de Bruijn graph with application to pan-genome indexing.
MIT License
43 stars 6 forks source link

Thread-safe kmer and annotation lookup? #10

Closed masakistan closed 6 years ago

masakistan commented 6 years ago

Thanks so much for the great library, it's helped us quite a bit!

I was wanting to parallelize some of my code but am unsure if the accessor methods are thread-safe.

The specific methods I'm wondering about are:

Could you specify if they are thread-safe?

Thanks!

GuillaumeHolley commented 6 years ago

Hi there :)

I'm quite happy the BFT helped you! Unfortunately, the BFT was not implemented as a parallelized library and I'm afraid all the methods you just cited are not thread-safe :(

Best, Guillaume