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.