C: kmer similarity: small improvements
This commit is contained in:
@ -27,7 +27,7 @@
|
||||
* @brief Alignment structure, with informations about the similarity and to rebuild the alignment.
|
||||
*/
|
||||
typedef struct Obi_ali {
|
||||
double score; /**< Alignment score.
|
||||
int score; /**< Alignment score, corresponding to the number of matches (identical nucleotides aligned).
|
||||
*/
|
||||
int consensus_length; /**< Length of the final consensus sequence.
|
||||
*/
|
||||
@ -37,10 +37,10 @@ typedef struct Obi_ali {
|
||||
*/
|
||||
uint8_t* consensus_qual; /**< Consensus quality built as to reconstruct a pairedend read.
|
||||
*/
|
||||
int shift; /**< Shift chosen to align the sequences (for shifted alignment).
|
||||
int shift; /**< Shift chosen to align the sequences.
|
||||
*/
|
||||
char direction[6]; /**< Alignement direction (positive/right or negative/left shift) (for shifted alignment).
|
||||
*/ // TODO but sequences switched around depending on size..... discuss
|
||||
char direction[6]; /**< Alignment direction (positive/right or negative/left shift).
|
||||
*/
|
||||
} Obi_ali_t, *Obi_ali_p;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user