View source: R/identifyTirMatches.R
identifyTirMatches | R Documentation |
Searches a DNAStringSet
for potential TIRs based on sequence similarity.
identifyTirMatches( tirSeq, Genome, mismatch = 0, strand = "*", tsdLength, fixed = TRUE )
tirSeq |
A |
Genome |
A |
mismatch |
The allowable mismatch between |
strand |
The directionality of the search string ("+" or "-"). Note that this does affect the search for tirSeqs, if you wish to search the reverse strand you should use the reverse complement of your sequence. |
tsdLength |
Integer referring to the length of the flanking TSD region. |
fixed |
Logical that will be passed to the 'fixed' argument of
|
Called by packSearch
. Used by
packSearch
as an initial filtering stage.
matchPattern
from Biostrings
is used for pattern matching. It is recommended to use
the general pipeline function packSearch
for identification of potential pack elements, however
each stage may be called individually.
A dataframe, tirMatches
, containing identified
matches. The dataframe is in the format generated by
packSearch
.
Jack Gisby
DNAStringSet
,
packSearch
, matchPattern
,
DNAString
data(arabidopsisThalianaRefseq) forwardMatches <- identifyTirMatches( Biostrings::DNAString("CACTACAA"), arabidopsisThalianaRefseq, tsdLength = 3, strand = "+" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.