Added qPCR Validation design code
[htsworkflow.git] / htswanalysis / src / ValidationDesign / Read.cpp
1 #include <string>
2
3 #include "Read.h"
4
5 bool compare_reads(const Read &a, const Read &b) { if(a.chr == b.chr) { return a.pos < b.pos; } else { return a.chr < b.chr; } }