X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=makebiomcommand.h;h=8f07c40d439529355af3fb3ee78e11b6b23aab7a;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=9f80c2e70215b130a9020a83ce2daebb9e63a089;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;p=mothur.git diff --git a/makebiomcommand.h b/makebiomcommand.h index 9f80c2e..8f07c40 100644 --- a/makebiomcommand.h +++ b/makebiomcommand.h @@ -25,7 +25,9 @@ public: vector setParameters(); string getCommandName() { return "make.biom"; } string getCommandCategory() { return "General"; } + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://biom-format.org/documentation/biom_format.html, http://www.mothur.org/wiki/Make.biom"; } string getDescription() { return "creates a biom file"; } @@ -34,15 +36,19 @@ public: private: - string sharedfile, contaxonomyfile, groups, outputDir, format, label; - vector outputNames, Groups; + string sharedfile, contaxonomyfile, metadatafile, groups, outputDir, format, label, referenceTax, picrustOtuFile; + vector outputNames, Groups, sampleMetadata; set labels; - bool abort, allLines; + bool abort, allLines, picrust; int getBiom(vector&); vector getMetaData(vector&); vector parseTax(string tax, vector& scores); + int getSampleMetaData(vector&); + //for picrust + int getGreenGenesOTUIDs(vector&, map&); + map readGGOtuMap(); };