]> git.donarmstrong.com Git - mothur.git/blob - alignmentcell.hpp
fixes while testing 1.33.0
[mothur.git] / alignmentcell.hpp
1 #ifndef ALIGNMENTCELL_H
2 #define ALIGNMENTCELL_H
3
4 /*
5  *  alignmentcell.hpp
6  *  
7  *
8  *  Created by Pat Schloss on 12/15/08.
9  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
10  *
11  *      This class is pretty basic.  Each AlignmentCell object contains a pointer to the previous cell and different values
12  *      used to calcualte the alignment.  Initially everything is set to zero and all pointers are set to 'x'
13  *  
14  */
15 #include "mothurout.h"
16 //********************************************************************************************************************
17
18 class AlignmentCell {
19         
20 public:
21         AlignmentCell();
22         char prevCell;
23         float cValue;
24         float dValue;
25         float iValue;
26 };
27
28 //********************************************************************************************************************
29
30 #endif