maskSeqEnds | R Documentation |
maskSeqEnds
takes a vector of DNA sequences, as character strings,
and replaces the leading and trailing characters with "N"
characters to create
a sequence vector with uniformly masked outer sequence segments.
maskSeqEnds(seq, mask_char = "N", max_mask = NULL, trim = FALSE)
seq |
character vector of DNA sequence strings. |
mask_char |
character to use for masking. |
max_mask |
the maximum number of characters to mask. If set to 0 then
no masking will be performed. If set to |
trim |
if |
A modified seq
vector with masked (or optionally trimmed) sequences.
See maskSeqGaps for masking internal gaps. See padSeqEnds for padding sequence of unequal length.
# Default behavior uniformly masks ragged ends
seq <- c("CCCCTGGG", "NAACTGGN", "NNNCTGNN")
maskSeqEnds(seq)
# Does nothing
maskSeqEnds(seq, max_mask=0)
# Cut ragged sequence ends
maskSeqEnds(seq, trim=TRUE)
# Set max_mask to limit extent of masking and trimming
maskSeqEnds(seq, max_mask=1)
maskSeqEnds(seq, max_mask=1, trim=TRUE)
# Mask dashes instead of Ns
seq <- c("CCCCTGGG", "-AACTGG-", "---CTG--")
maskSeqEnds(seq, mask_char="-")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.