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
Would it be possible to add a "<" operator to the unitigIterator class and a "[]" operator to CompactedDBG class?
I am implementing a function with openMP multithreading where I am iterating over unitigs using a for loop. However, openMP dictates that the for loop be in the format for (unitigIterator i = cdbg.begin(); i < cdbg.end(); i++) which is not currently possible to implement.
Many thanks in advance, Sam.
The text was updated successfully, but these errors were encountered:
Sorry about the delay, for some reasons I missed the notification of this issue until today. Implementing those operators is feasible I think but would require some important refactoring. Unfortunately I am the only person working on Bifrost at the moment so I'll add this to my todo list but I wouldn't expect it to be released any time soon.
Would it be possible to add a "<" operator to the unitigIterator class and a "[]" operator to CompactedDBG class?
I am implementing a function with openMP multithreading where I am iterating over unitigs using a for loop. However, openMP dictates that the for loop be in the format
for (unitigIterator i = cdbg.begin(); i < cdbg.end(); i++)
which is not currently possible to implement.Many thanks in advance, Sam.
The text was updated successfully, but these errors were encountered: