Add "tseq" output & make available to Python #1201
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It'd be handy to be able to retrieve the sequence which minimap2 has matched with, to generate HGVS strings or etc.
You could reconstruct this from the long form CS string (see #1194) but it seems like it'd be handy to just retrieve the whole string in one go.
This PR adds an
mm_gen_tseq
C function to retrieve the sequence, and atseq
property on the python Alignment object.I've called it "tseq" because it's called that in the write_cs_ds_or_MD function but it's not necessarily a great name.