C: made error message more detailed when checking that sequences and
qualities match
This commit is contained in:
@ -1407,7 +1407,7 @@ static char* view_check_qual_match_seqs(Obiview_p view)
|
|||||||
// Test that the lengths of the quality and the sequence are equal
|
// Test that the lengths of the quality and the sequence are equal
|
||||||
if ((size_t)qual_len != strlen(seq))
|
if ((size_t)qual_len != strlen(seq))
|
||||||
{
|
{
|
||||||
obidebug(1, "\nError checking the predicate for view %s: The sequences and sequence quality arrays match.", (view->infos)->name);
|
obidebug(1, "\nError checking the predicate for view %s: The sequences and sequence quality arrays match (index %lld, seq=%s, quality length = %d).", (view->infos)->name, j, seq, qual_len);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user