Skip to content

Commit

Permalink
fixed 1-based position at negative strand
Browse files Browse the repository at this point in the history
MPIBR-tushevg committed Oct 13, 2016
1 parent c7525ac commit ff84ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htsutils.c
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ void hts_parse(hts_config_t *hts, aux_config_t *aux)
polySize_tail = findPoly(hts->bam, 'T', POLY_HEAD);

// define last base
base = hts->bam->core.pos;
base = hts->bam->core.pos + 1;
}
else
{

0 comments on commit ff84ea8

Please sign in to comment.