Description Usage Arguments References Examples
This function uses searches a list of SeqFastadna
objects for sequences with RxLR or CRN motifs.
1 | regex.search(sequence, motif = "RxLR", reg.pat = NULL)
|
sequence |
A list of |
motif |
A character string indicating the motif to be searched. Motifs for two cytoplasmic effectors are added to the function: A third option, Default |
reg.pat |
A character string indicating the REGEX pattern for the |
Haas, B.J., Kamoun, S., Zody, M.C., Jiang, R.H., Handsaker, R.E., Cano, L.M., Grabherr, M., Kodira, C.D., Raffaele, S., Torto-Alalibo, T. and Bozkurt, T.O., 2009. Genome sequence and analysis of the Irish potato famine pathogen Phytophthora infestans. Nature, 461(7262), p.393.
1 2 3 4 | fasta.file <- system.file("extdata", "test_infestans.fasta", package = "effectR")
ORF <- seqinr::read.fasta(fasta.file)
rxlr.cand <- regex.search(ORF)
custom.cand <- regex.search(ORF, motif = "custom", reg.pat ="^\\w{12,60}r\\wlr\\w{6,10}eer")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.