Description Usage Arguments Value Examples
Returns start end end of the primer. If there are more than one matches, return the first match and the number of matches
1 2 3 4 5 6 | get_primer_position(
primer_seq,
target_seq,
orientation = "fwd",
mismatches = 0
)
|
primer_seq |
primer sequence |
target_seq |
target sequences (vector) |
orientation |
"fwd" or "rev" |
mismatches |
Number of mismatches allowed |
data frame with four columns:
$id - row of sequences
$start - start of match (NA if no match)
$end - end of match (NA if no match)
$n_matches - number of matches (NA if no match)
1 | get_primer_position("ATT",c("ATTTTCGGG", "AGTTTCGGG"), orientation="fwd", mismatches=0)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.