]> git.donarmstrong.com Git - mothur.git/blob - alignmentcell.cpp
changes while testing
[mothur.git] / alignmentcell.cpp
1 /*
2  *  alignmentcell.cpp
3  *
4  *  Created by Pat Schloss on 12/15/08.
5  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
6  *
7  *      This class is pretty basic.  Each AlignmentCell object contains a pointer to the previous cell and different values
8  *      used to calcualte the alignment.  Initially everything is set to zero and all pointers are set to 'x'
9  *  
10  */
11
12 #include "alignmentcell.hpp"
13
14 //********************************************************************************************************************
15
16 AlignmentCell::AlignmentCell() : prevCell('x'), cValue(0.0000), dValue(0.0000), iValue(0.0000) {}
17
18 //********************************************************************************************************************