minor fixes and comments
This commit is contained in:
@ -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;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -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.
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user