minor fixes and comments

This commit is contained in:
Celine Mercier
2018-11-19 11:23:54 +01:00
parent 4d51f4f015
commit 730ea99f85
2 changed files with 6 additions and 2 deletions

View File

@ -66,8 +66,13 @@ char* obi_blob_to_seq(Obi_blob_p value_b)
// Decode // Decode
if (value_b->element_size == 2) if (value_b->element_size == 2)
return decode_seq_on_2_bits(value_b->value, value_b->length_decoded_value); return decode_seq_on_2_bits(value_b->value, value_b->length_decoded_value);
else else //if (value_b->element_size == 4) commented for efficiency reasons
return decode_seq_on_4_bits(value_b->value, value_b->length_decoded_value); return decode_seq_on_4_bits(value_b->value, value_b->length_decoded_value);
// else
// {
// fprintf(stderr, "\n BUG \n");
// return NULL;
// }
} }

View File

@ -46,7 +46,6 @@
* Internal function creating the output columns for the obiclean algorithm. * Internal function creating the output columns for the obiclean algorithm.
* *
* @param o_view A pointer on the output view. * @param o_view A pointer on the output view.
* @param i_view A pointer on the input view.
* @param sample_column A pointer on the column where sample counts are kept. * @param sample_column A pointer on the column where sample counts are kept.
* @param sample_count The number of different samples. * @param sample_count The number of different samples.
* *