]> git.donarmstrong.com Git - mothur.git/blob - otuassociationcommand.h
added load.logfile command. changed summary.single output for subsample=t.
[mothur.git] / otuassociationcommand.h
1 #ifndef OTUASSOCIATIONCOMMAND_H
2 #define OTUASSOCIATIONCOMMAND_H
3
4 /*
5  *  otuassociationcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 1/19/12.
9  *  Copyright 2012 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15 #include "sharedrabundfloatvector.h"
16 #include "inputdata.h"
17
18
19 class OTUAssociationCommand : public Command {
20 public:
21         OTUAssociationCommand(string);
22         OTUAssociationCommand();
23         ~OTUAssociationCommand(){}
24         
25         vector<string> setParameters();
26         string getCommandName()                 { return "otu.association";                     }
27         string getCommandCategory()             { return "Hypothesis Testing";          }
28         string getOutputFileNameTag(string, string);
29         string getHelpString(); 
30         string getCitation() { return "http://www.mothur.org/wiki/Otu.association"; }
31         string getDescription()         { return "calculate the correlation coefficient for the otus in a shared/relabund file"; }
32         
33         int execute();
34         void help() { m->mothurOut(getHelpString()); }  
35 private:
36         
37         string sharedfile, relabundfile, metadatafile, groups, label, inputFileName, outputDir, method;
38         bool abort, pickedGroups, allLines;
39         set<string> labels;
40     vector<SharedRAbundFloatVector*> metadataLookup;
41     vector< vector< double> > metadata;
42         
43         vector<string> outputNames, Groups, metadataLabels;
44         int processShared();
45         int process(vector<SharedRAbundVector*>&);
46         int processRelabund();
47         int process(vector<SharedRAbundFloatVector*>&);
48     int readMetadata();
49     int getMetadata();
50         
51 };
52
53
54 #endif
55
56
57