PoonLab / OpenRDP

An open-source re-implementation of the RDP4 recombination detection program
GNU General Public License v3.0
45 stars 9 forks source link

fixes to #73 #74

Closed WilliamZekaiWang closed 5 months ago

WilliamZekaiWang commented 5 months ago

fixes the problem of having '>' in the string of GENCOV output

ArtPoon commented 5 months ago

Just a note, I think using a regex would be faster than looping through every character in every "word"

ArtPoon commented 5 months ago

For example a pattern to match floats or integers could be [0-9.]+ or `[0-9]+\.?[0-9]*'