| multSeq {rbamtools} | R Documentation |
The function takes two vectors (of type integer) of equal length. For each entry pair (p,q) the returned vector contains p:q. Therefore c(a, b, c) and c(x, y, z) produces c(a:x, b:y, c:z).
multSeq(beg, end)
beg |
|
end |
|
Integer vector
Wolfgang Kaisers
# MultSeq multSeq(c(1, 4, 7), c(2, 5, 8))