X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=alignmentcell.hpp;fp=alignmentcell.hpp;h=569198fe004cf8c882f86327aa335b882735570b;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hp=0000000000000000000000000000000000000000;hpb=1b73ff67c83892a025e597dabd9df6fe7b58206a;p=mothur.git diff --git a/alignmentcell.hpp b/alignmentcell.hpp new file mode 100644 index 0000000..569198f --- /dev/null +++ b/alignmentcell.hpp @@ -0,0 +1,30 @@ +#ifndef ALIGNMENTCELL_H +#define ALIGNMENTCELL_H + +/* + * alignmentcell.hpp + * + * + * Created by Pat Schloss on 12/15/08. + * Copyright 2008 Patrick D. Schloss. All rights reserved. + * + * This class is pretty basic. Each AlignmentCell object contains a pointer to the previous cell and different values + * used to calcualte the alignment. Initially everything is set to zero and all pointers are set to 'x' + * + */ +#include "mothurout.h" +//******************************************************************************************************************** + +class AlignmentCell { + +public: + AlignmentCell(); + char prevCell; + float cValue; + float dValue; + float iValue; +}; + +//******************************************************************************************************************** + +#endif