noporpoise / seq-align

Fast, portable C implementations of Needleman-Wunsch and Smith-Waterman sequence alignment
94 stars 39 forks source link

thread safe #12

Open lpipes opened 4 years ago

lpipes commented 4 years ago

Hi, I am trying to use the Needleman-Wunsch alignment part of your code in my program that is threaded. I am having issues parallelizing the code specifically around the function needleman_wunsch_align(). Do you know if there are parts of the code that are not thread safe?

Thank you.