Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Bio.SeqLoc.SeqLike
Documentation
Methods
length :: Integral n => s -> n #
Length of sequence data
ntAt :: Integral n => s -> n -> Maybe Char #
Just
the nucleotide at a specified sequence data offset,
given in 0-based coordinates, or Nothing
if the offset is
beyond the bounds of the data
subseq :: (Integral n, Integral m) => n -> m -> s -> Maybe s #
Just
the nucleotides in subsequence of the sequence data, or
Nothing
if the region extends beyond the bounds of the
sequence.
subseqPad :: (Integral n, Integral m) => n -> m -> s -> s #
Nucleotides in a subsequence of the sequence data, padded with
N
when the region extends beyond the bounds of the sequence.
Instances