Description Usage Arguments Details Value Author(s) Examples
Converts IUPAC coded DNA sequences to a boolean syntax that can be utilized in query searches.
1 | IUPAC_Boolean(DNAseq, stringency)
|
DNAseq |
a vector of DNA characters in IUPAC code. |
stringency |
a character designating "high", "medium", or "low" stringency levels. |
Requires a vector of DNA characters in IUPAC code.
There are three different stringency levels: high, medium, and low. The high stringency substitutes all IUPAC symbols for their nucleotide designations. Medium stringency substitutes IUPAC symbols with one and two nucleotide designations while treating those with three nucleotide designations as any nucleotide. High stringency retains only IUPAC symbols with one nucleotide designation while treating all others as any nucleotide.
A vector of DNA characters converted to boolean syntax.
Brendan Gongol
1 2 3 4 | sequences <- c("RTSWKMBDHVNATAATCGCTCCATACCTACATCN", "ATAGNNNCTCGACATWKMBACATCGCTACANNTACATAC")
IUPAC_Boolean(sequences, stringency = "high")
IUPAC_Boolean(sequences, stringency = "medium")
IUPAC_Boolean(sequences, stringency = "low")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.