]> git.donarmstrong.com Git - mothur.git/blob - readsabundfilecommand.h
Initial revision
[mothur.git] / readsabundfilecommand.h
1 #ifndef READSABUNDFILECOMMAND_H
2 #define READSABUNDFILECOMMAND_H
3 /*
4  *  readsabundfilecommand.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include <Carbon/Carbon.h>
13 #include <iostream>
14 #include <fstream>
15 #include "command.hpp"
16 #include "readmatrix.hpp"
17 #include "inputdata.h"
18
19 /* The read.sabund command parameter options are sabundfile and orderfile.  
20 The read.sabund command should be in the following format: 
21 read.sabund(sabundfile=yourSabundFile, orderfile=yourOrderFile). The sabundfile parameter is required.*/
22
23 class GlobalData;
24
25 class ReadSAbundFileCommand : public Command {
26 public:
27         ReadSAbundFileCommand();
28         ~ReadSAbundFileCommand();
29         int execute();
30         
31 private:
32         GlobalData* globaldata;
33         ReadMatrix* read;
34         InputData* input;
35         string filename;
36 };
37
38 #endif