]> git.donarmstrong.com Git - mothur.git/blobdiff - getrelabundcommand.h
Revert to previous commit
[mothur.git] / getrelabundcommand.h
diff --git a/getrelabundcommand.h b/getrelabundcommand.h
new file mode 100644 (file)
index 0000000..1d5163d
--- /dev/null
@@ -0,0 +1,50 @@
+#ifndef GETRELABUNDCOMMAND_H
+#define GETRELABUNDCOMMAND_H
+
+/*
+ *  getrelabundcommand.h
+ *  Mothur
+ *
+ *  Created by westcott on 6/21/10.
+ *  Copyright 2010 Schloss Lab. All rights reserved.
+ *
+ */
+#include "command.hpp"
+#include "inputdata.h"
+#include "sharedrabundvector.h"
+
+
+class GetRelAbundCommand : public Command {
+
+public:
+       GetRelAbundCommand(string);
+       GetRelAbundCommand();
+       ~GetRelAbundCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "get.relabund";                        }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getHelpString(); 
+       string getCitation() { return "http://www.mothur.org/wiki/Get.relabund"; }
+       string getDescription()         { return "calculates the relative abundance of each OTU in a sample"; }
+
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
+       
+private:
+       InputData* input;
+       vector<SharedRAbundVector*> lookup;
+       
+       bool abort, allLines, pickedGroups;
+       set<string> labels; //holds labels to be used
+       string groups, label, outputDir, scale, sharedfile;
+       vector<string> Groups, outputNames;
+       
+       int getRelAbundance(vector<SharedRAbundVector*>&, ofstream&);
+
+};
+
+#endif
+