]> git.donarmstrong.com Git - mothur.git/blobdiff - chopseqscommand.h
fixed unifrac.weighted
[mothur.git] / chopseqscommand.h
index 5d8d6c4a87223dd1ec5573563f64b0b658cfcc1d..8e007ff7513e62df1dd32e7fe192628c02e48425 100644 (file)
 
 
 #include "command.hpp"
+#include "sequence.hpp"
 
 class ChopSeqsCommand : public Command {
        
        public:
        
-               ChopSeqsCommand(string);        
+               ChopSeqsCommand(string);
+               ChopSeqsCommand();      
                ~ChopSeqsCommand(){};
+               vector<string> getRequiredParameters();
+               vector<string> getValidParameters();
+               vector<string> getRequiredFiles();
+               map<string, vector<string> > getOutputFiles() { return outputTypes; }
                int execute();
                void help();    
                
        private:
-               string fastafile, outputDir;
-               bool abort;
-               int end;
+               string fastafile, outputDir, keep;
+               bool abort, countGaps;
+               int numbases;
+               vector<string> outputNames;
+               map<string, vector<string> > outputTypes;
+               
+               string getChopped(Sequence);
+               
+               
 };
 
 #endif