Commit ab5879fb authored by Haowen Zhang's avatar Haowen Zhang
Browse files

Fix a bug in candidate sorting.

parent 505e2bac
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ struct Candidate {
      return true;
    }

    if (count < c.count) {
      return false;
    }

    return position < c.position;
  }
};
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#include "temp_mapping.h"
#include "utils.h"

#define CHROMAP_VERSION "0.2.3-r413"
#define CHROMAP_VERSION "0.2.3-r416"

namespace chromap {