]> git.donarmstrong.com Git - mothur.git/blob - readseqscommand.h
altered venn command to make use of sharedchao for any number of groups, fixed window...
[mothur.git] / readseqscommand.h
1 #ifndef READSEQSCOMMAND_H
2 #define READSEQSCOMMAND_H
3 /*
4  *  readseqscommand.h
5  *  Mothur
6  *
7  *  Created by Thomas Ryabin on 4/13/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13 #include "readfasta.h"
14 #include "readnexus.h"
15 #include "readclustal.h"
16 #include "readseqsphylip.h"
17
18 class GlobalData;
19
20 class ReadSeqsCommand : public Command {
21 public:
22         ReadSeqsCommand();
23         ~ReadSeqsCommand();
24         int execute();
25         
26 private:
27         GlobalData* globaldata;
28         ReadFasta* readFasta;
29         ReadNexus* readNexus;
30         ReadClustal* readClustal;
31         ReadPhylip* readPhylip;
32         string filename;
33 };
34
35 #endif