Fixed missing email address

This commit is contained in:
Celine Mercier
2017-02-07 17:14:10 +01:00
parent 7e9932f488
commit a9102620f5

View File

@ -4,7 +4,7 @@
/** /**
* @file obi_align.h * @file obi_align.h
* @author Celine Mercier * @author Celine Mercier (celine.mercier@metabarcoding.org)
* @date May 11th 2016 * @date May 11th 2016
* @brief Header file for the functions handling the LCS alignment of DNA sequences. * @brief Header file for the functions handling the LCS alignment of DNA sequences.
*/ */
@ -77,7 +77,7 @@
* the length of the Longest Common Subsequence. If the score is not normalized and expressed in distance, * the length of the Longest Common Subsequence. If the score is not normalized and expressed in distance,
* it is (reference length - LCS length). Only sequence pairs with a similarity above the threshold are printed. * it is (reference length - LCS length). Only sequence pairs with a similarity above the threshold are printed.
* @param normalize Whether the score should be normalized with the reference sequence length. * @param normalize Whether the score should be normalized with the reference sequence length.
* @param reference The reference length. 0: The alignement length; 1: The longest sequence's length; 2: The shortest sequence's length. * @param reference The reference length. 0: The alignment length; 1: The longest sequence's length; 2: The shortest sequence's length.
* @param similarity_mode Whether the score should be expressed in similarity (true) or distance (false). * @param similarity_mode Whether the score should be expressed in similarity (true) or distance (false).
* *
* @returns A value indicating the success of the operation. * @returns A value indicating the success of the operation.