1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#ifndef MAKEFASTQCOMMAND_H
#define MAKEFASTQCOMMAND_H
/*
* makefastqcommand.h
* mothur
*
* Created by westcott on 2/14/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "command.hpp"
class MakeFastQCommand : public Command {
public:
MakeFastQCommand(string);
~MakeFastQCommand(){}
vector<string> setParameters();
string getCommandName() { return "make.fastq"; }
string getCommandCategory() { return "Sequence Processing"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "http://www.mothur.org/wiki/Make.fastq"; }
string getDescription() { return "creates a fastq file from a fasta and quality file"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
string fastafile, qualfile, format;
bool abort;
vector<string> outputNames;
string convertQual(vector<int>);
};
#endif
|