]> git.donarmstrong.com Git - mothur.git/blobdiff - parsefastaqcommand.h
added zap method to classify.seqs and changed bayesian method name to wang.
[mothur.git] / parsefastaqcommand.h
index fe77cf08f34e3760734fb7b70568c4db09d603a2..96fcb7d6799358ff4e10f930d1ad4165763b46a0 100644 (file)
@@ -23,17 +23,22 @@ public:
        vector<string> setParameters();
        string getCommandName()                 { return "parse.fastq";         }
        string getCommandCategory()             { return "Sequence Processing"; }
+       string getOutputFileNameTag(string, string);
        string getHelpString(); 
+       string getCitation() { return "http://www.mothur.org/wiki/Parse.fastq"; }
+       string getDescription()         { return "reads a fastq file and creates a fasta and quality file"; }
+
        
        int execute(); 
        void help() { m->mothurOut(getHelpString()); }          
 private:
 
        vector<string> outputNames;     
-       string outputDir, fastaQFile;
-       bool abort;
+       string outputDir, fastaQFile, format;
+       bool abort, fasta, qual;
        
        vector<int> convertQual(string);
+    vector<char> convertTable;
 };
 
 #endif