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
|
//
// setseedcommand.h
// Mothur
//
// Created by Sarah Westcott on 3/24/15.
// Copyright (c) 2015 Schloss Lab. All rights reserved.
//
#ifndef __Mothur__setseedcommand__
#define __Mothur__setseedcommand__
#include "command.hpp"
#include "commandfactory.hpp"
/**********************************************************/
class SetSeedCommand : public Command {
public:
SetSeedCommand(string);
~SetSeedCommand(){}
vector<string> setParameters();
string getCommandName() { return "set.seed"; }
string getCommandCategory() { return "General"; }
string getHelpString();
string getOutputPattern(string){ return ""; }
string getCitation() { return "http://www.mothur.org/wiki/Set.seed"; }
string getDescription() { return "set random seed"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
bool abort;
int random;
vector<string> outputNames;
};
/**********************************************************/
#endif /* defined(__Mothur__setseedcommand__) */
|