Some comments updated
This commit is contained in:
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
// use openMP pragmas : garder scores en memoire et ecrire a la fin?
|
// use openMP pragmas : garder scores en memoire et ecrire a la fin? (normalement c bon avec index)
|
||||||
// tout ecrire en stdint?
|
// tout ecrire en stdint?
|
||||||
// check NUC_SEQS and score type (int or float if normalize)
|
// check NUC_SEQS and score type (int or float if normalize)
|
||||||
// what's with multiple sequence/line columns?
|
// what's with multiple sequence/line columns?
|
||||||
|
@ -33,6 +33,7 @@ int obi_column_set_obiqual_char_with_elt_idx(OBIDMS_column_p column, index_t lin
|
|||||||
int i;
|
int i;
|
||||||
int ret_value;
|
int ret_value;
|
||||||
|
|
||||||
|
// Check NA value
|
||||||
if (value == OBIQual_char_NA)
|
if (value == OBIQual_char_NA)
|
||||||
{
|
{
|
||||||
ret_value = obi_column_set_obiqual_int_with_elt_idx(column, line_nb, element_idx, OBIQual_int_NA, 0);
|
ret_value = obi_column_set_obiqual_int_with_elt_idx(column, line_nb, element_idx, OBIQual_int_NA, 0);
|
||||||
|
@ -299,7 +299,7 @@ int update_lines(Obiview_p view, index_t line_count)
|
|||||||
// Enlarge the column
|
// Enlarge the column
|
||||||
if (obi_enlarge_column((view->columns)[i]) < 0)
|
if (obi_enlarge_column((view->columns)[i]) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
(((view->columns)[i])->header)->lines_used = line_count; // TODO Discuss, this means that columns are not truncated below the number of lines in the view. Maybe they should be to save place.
|
(((view->columns)[i])->header)->lines_used = line_count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user