get_sq_lengths {tidysq} | R Documentation |
Get lengths of sequences in sq object
Description
Returns number of elements in each sequence in given
sq
object.
Usage
get_sq_lengths(x)
Arguments
x |
[ |
Details
Due to storage implementation, using lengths
method
returns length of stored raw vectors instead of real sequence lengths. This
function accesses original_length
attribute of each sequence, which
attribute stores information about how many elements are there in given
sequence.
Value
A numeric
vector, where each element gives length of
corresponding sequence from sq
object.
See Also
Functions from utility module:
==.sq()
,
is.sq()
,
sqconcatenate
,
sqextract
Examples
# Creating objects to work on:
sq_ami <- sq(c("MIAANYTWIL","TIAALGNIIYRAIE", "NYERTGHLI", "MAYXXXIALN"),
alphabet = "ami_ext")
sq_dna <- sq(c("ATGCAGGA", "GACCGAACGAN", "TGACGAGCTTA", "ACTNNAGCN"),
alphabet = "dna_ext")
# Counting number of elements in sq object:
get_sq_lengths(sq_dna)
get_sq_lengths(sq_ami)
[Package tidysq version 1.1.3 Index]