X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothur.h;fp=mothur.h;h=50344e24bfea85e8b7c4b829b5136e3e63d34fc7;hb=16abd6271c455bd01b34ff89a2e3641bef0fa128;hp=3b7c4599329aede91be3f6325d27df1accf77c03;hpb=896a4f281982a3c2889f6ce6d73be997072aceae;p=mothur.git diff --git a/mothur.h b/mothur.h index 3b7c459..50344e2 100644 --- a/mothur.h +++ b/mothur.h @@ -106,6 +106,19 @@ struct ThreadNode { IntNode* right; }; +struct diffPair { + float prob; + float reverseProb; + + diffPair() { + prob = 0; reverseProb = 0; + } + diffPair(float p, float rp) { + prob = p; + reverseProb = rp; + } +}; + /************************************************************/ struct clusterNode { int numSeq;