]> git.donarmstrong.com Git - mothur.git/blobdiff - getseqscommand.h
added sparseDistanceMatrix class. Modified cluster commands to use the new sparse...
[mothur.git] / getseqscommand.h
index 4561d28614c62686c42e29a9747b84d853537fd0..c71b5f2804a71190c6919f0dc80bf80d32f15508 100644 (file)
@@ -23,7 +23,8 @@ class GetSeqsCommand : public Command {
                vector<string> setParameters();
                string getCommandName()                 { return "get.seqs";                            }
                string getCommandCategory()             { return "Sequence Processing";         }
-               string getHelpString(); 
+               string getOutputFileNameTag(string, string);
+       string getHelpString(); 
                string getCitation() { return "http://www.mothur.org/wiki/Get.seqs"; }
                string getDescription()         { return "gets sequences from a list, fasta, name, group, alignreport, quality or taxonomy file"; }
 
@@ -36,16 +37,21 @@ class GetSeqsCommand : public Command {
                vector<string> outputNames;
                string accnosfile, accnosfile2, fastafile, namefile, groupfile, alignfile, listfile, taxfile, qualfile, outputDir;
                bool abort, dups;
+    
+        //for debug
+        map<string, set<string> > sanity; //maps file type to names chosen for file. something like "fasta" -> vector<string>. If running in debug mode this is filled and we check to make sure all the files have the same names. If they don't we output the differences for the user.
                
                int readFasta();
                int readName();
                int readGroup();
                int readAlign();
-               int readAccnos();
                int readList();
                int readTax();
                int readQual();
                int compareAccnos();
+        int runSanityCheck();
+        int createMisMatchFile(ofstream&, string, string, set<string>, set<string>);
+
                
 };