From f3b0e10c7f8bb8152b33e09432b2355c681173b3 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Tue, 10 Sep 2019 14:42:12 +0200 Subject: [PATCH] fixed a comment --- src/kmer_similarity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kmer_similarity.h b/src/kmer_similarity.h index 5bac38c..ada665f 100755 --- a/src/kmer_similarity.h +++ b/src/kmer_similarity.h @@ -27,7 +27,7 @@ * @brief Alignment structure, with informations about the similarity and to rebuild the alignment. */ typedef struct Obi_ali { - int score; /**< Alignment score, corresponding to the number of matches (identical nucleotides aligned). + int score; /**< Alignment score, corresponding to the number of nucleotides in the longest stretch of kmers perfectly matching. */ int consensus_length; /**< Length of the final consensus sequence. */