Displaying 1 result from an estimated 1 matches for "gapopen".
Did you mean:
popen
2017 Apr 28
1
pairwiseAlignment Improvements
...rn data types consistently be made to be IRanges ? Sometimes it's IntegerList, sometimes it's IRanges. For example,
> A
11-letter "DNAString" instance
seq: GAACGAGGACC
> B
8-letter "DNAString" instance
seq: GGACGAGC
> alignment <- pairwiseAlignment(A, B, gapOpening = 0, gapExtension = 1, substitutionMatrix = substitutions)
> alignment at subject@mismatch
IntegerList of length 1
[[1]] 2
> alignment at subject@indel
IRangesList of length 1
[[1]]
IRanges of length 1
start end width
[1] 8 9 2
Lastly, why are functions like insertion, delet...