]> git.donarmstrong.com Git - mothur.git/blobdiff - removeseqscommand.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / removeseqscommand.h
index 8238c649489e3dff52371fa06ab8e2f49b93258f..1a6365dac35b9e18669f8827c4054268b9123d9e 100644 (file)
@@ -17,23 +17,37 @@ class RemoveSeqsCommand : public Command {
        public:
        
                RemoveSeqsCommand(string);      
-               ~RemoveSeqsCommand(){};
-               int execute();
-               void help();    
+               RemoveSeqsCommand();
+               ~RemoveSeqsCommand(){}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "remove.seqs";                         }
+               string getCommandCategory()             { return "Sequence Processing";         }
                
+       string getHelpString(); 
+    string getOutputPattern(string);   
+               string getCitation() { return "http://www.mothur.org/wiki/Remove.seqs"; }
+               string getDescription()         { return "removes sequences from a list, fasta, name, group, alignreport, quality or taxonomy file"; }
+
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
+       
        private:
                set<string> names;
-               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir;
+               string accnosfile, fastafile, namefile, groupfile, countfile, alignfile, listfile, taxfile, qualfile, outputDir;
                bool abort, dups;
                vector<string> outputNames;
+        map<string, string> uniqueMap;
                
                int readFasta();
                int readName();
                int readGroup();
+        int readCount();
                int readAlign();
-               void readAccnos();
                int readList();
                int readTax();
+               int readQual();
                
 };