X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=validcalculator.h;h=59f6bb3488ddb03acdc9a8682b748e9347f04fb9;hp=320f9822662f842faecec103ef29ba75495e77af;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=f15f7092c97277337d4fdd9ef674015c15a13220 diff --git a/validcalculator.h b/validcalculator.h index 320f982..59f6bb3 100644 --- a/validcalculator.h +++ b/validcalculator.h @@ -11,6 +11,7 @@ */ #include "mothur.h" +#include "mothurout.h" //This class contains a list of all valid calculators in Mothur. //It has a function which will tell you if your calculator is valid for the given parameter. @@ -23,6 +24,8 @@ class ValidCalculators { ~ValidCalculators(); bool isValidCalculator(string, string); void printCalc(string, ostream&); + string printCalc(string); + void printCitations(vector); private: map single; @@ -39,6 +42,7 @@ class ValidCalculators { map boot; map distance; map::iterator it; + set allCalcs; void initialSingle(); void initialShared(); @@ -53,6 +57,8 @@ class ValidCalculators { void initialBoot(); void initialDistance(); void initialHeat(); + + MothurOut* m; }; #endif