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
|
#ifndef MANTELCOMMAND_H
#define MANTELCOMMAND_H
/*
* mantelcommand.h
* mothur
*
* Created by westcott on 2/9/11.
* Copyright 2011 Schloss Lab. All rights reserved.
*
*/
#include "command.hpp"
#include "linearalgebra.h"
class MantelCommand : public Command {
public:
MantelCommand(string);
~MantelCommand(){}
vector<string> setParameters();
string getCommandName() { return "mantel"; }
string getCommandCategory() { return "Hypothesis Testing"; }
string getHelpString();
string getOutputPattern(string);
string getCitation() { return "McCune B, Grace JB, Urban DL (2002). Analysis of ecological communities. MjM Software Design: Gleneden Beach, OR. \nLegendre P, Legendre L (1998). Numerical Ecology. Elsevier: New York. \nhttp://www.mothur.org/wiki/Mantel"; }
string getDescription() { return "Mantel’s test for correlation between matrices"; }
int execute();
void help() { m->mothurOut(getHelpString()); }
private:
string phylipfile1, phylipfile2, method;
bool abort;
int iters;
vector<string> outputNames;
};
#endif
|