X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=validcalculator.h;h=59f6bb3488ddb03acdc9a8682b748e9347f04fb9;hp=15ff3116de0abb2049951a7d8d6c0e3c7f38de56;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=b22853b5cfbf5c47949ad2a084f2fad88b2e4be4 diff --git a/validcalculator.h b/validcalculator.h index 15ff311..59f6bb3 100644 --- a/validcalculator.h +++ b/validcalculator.h @@ -9,9 +9,9 @@ * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. * */ -using namespace std; #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. @@ -24,6 +24,8 @@ class ValidCalculators { ~ValidCalculators(); bool isValidCalculator(string, string); void printCalc(string, ostream&); + string printCalc(string); + void printCitations(vector); private: map single; @@ -36,9 +38,11 @@ class ValidCalculators { map vennshared; map treegroup; map matrix; + map heat; map boot; map distance; map::iterator it; + set allCalcs; void initialSingle(); void initialShared(); @@ -52,6 +56,9 @@ class ValidCalculators { void initialMatrix(); void initialBoot(); void initialDistance(); + void initialHeat(); + + MothurOut* m; }; #endif