]> git.donarmstrong.com Git - mothur.git/blob - seqsummarycommand.h
addition of summary.seq command [pds]
[mothur.git] / seqsummarycommand.h
1 #ifndef SEQSUMMARYCOMMAND_H
2 #define SEQSUMMARYCOMMAND_H
3
4 /*
5  *  seqcoordcommand.h
6  *  Mothur
7  *
8  *  Created by Pat Schloss on 5/30/09.
9  *  Copyright 2009 Patrick D. Schloss. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15 #include "globaldata.hpp"
16 #include "readfasta.h"
17 #include "readnexus.h"
18 #include "readclustal.h"
19 #include "readseqsphylip.h"
20
21 using namespace std;
22
23 class SeqSummaryCommand : public Command {
24 public:
25         SeqSummaryCommand();
26         ~SeqSummaryCommand();
27         int execute();
28         
29 private:
30         int numSeqs;    
31         GlobalData* globaldata; 
32         ReadSeqs* readSeqs;
33         SequenceDB* db;
34 };
35
36 #endif