]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
changes to dist.seqs and pairwise.seqs and cluster.classic no longer resizes
[mothur.git] / mothur.h
index bfe0692cf035a8c96a933da2ce70ced46ca98429..337e5b33a6b1d8100effe484c230d42c7fd93f58 100644 (file)
--- a/mothur.h
+++ b/mothur.h
@@ -116,6 +116,17 @@ struct seqDist {
        seqDist(int s1, int s2, float d) : seq1(s1), seq2(s2), dist(d) {}
        ~seqDist() {}
 };
+/************************************************************/
+struct distlinePair {
+       int start;
+       int end;
+       
+};
+/************************************************************/
+//sorts lowest to highest
+inline bool compareDistLinePairs(distlinePair left, distlinePair right){
+       return (left.end < right.end);  
+} 
 //********************************************************************************************************************
 //sorts lowest to highest
 inline bool compareSequenceDistance(seqDist left, seqDist right){