]> git.donarmstrong.com Git - mothur.git/blob - readdistcommand.h
merged pat's trim seqs edits with sarah's major overhaul of global data; also added...
[mothur.git] / readdistcommand.h
1 #ifndef READDISTCOMMAND_H
2 #define READDISTCOMMAND_H
3 /*
4  *  readdistcommand.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 1/20/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "readmatrix.hpp"
14 #include "fullmatrix.h"
15 #include "groupmap.h"
16
17 /* The read.dist command is used to read a distance matrix file.  
18 The read.dist command parameter options are phylipfile, columnfile, namefile, cutoff and precision. 
19 The read.dist command should be in the following format: read.dist(phylipfile=yourDistFile, 
20 namefile=yourNameFile, cutoff=yourCutoff, precision=yourPrecision). The phylipfile or columnfile are required and if you use a columnfile the namefile is required.  
21 If you do not provide a cutoff value 10.00 is assumed. If you do not provide a precision value then 100 is assumed.  */
22
23 class NameAssignment;
24 class GlobalData;
25
26
27 class ReadDistCommand : public Command {
28 public:
29         ReadDistCommand(string);
30         ~ReadDistCommand();
31         int execute();
32         void help();
33         
34 private:
35         GlobalData* globaldata;
36         double cutoff;
37         int precision;
38         ReadMatrix* read;
39         FullMatrix* matrix;
40         GroupMap* groupMap;
41         string distFileName, format, method;
42         string phylipfile, columnfile, namefile, groupfile;
43         NameAssignment* nameMap;
44
45         bool abort;
46
47 };
48
49 #endif