1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
\name{IUPAC2Matrix}
\alias{IUPAC2Matrix}
\title{
IUPAC2Matrix
}
\description{
Convert a IUPAC string into a Postion Weight Matirx
}
\usage{
IUPAC2Matrix(x)
}
\arguments{
\item{x}{
The IUPAC string.
}
}
\details{
The mapping between IUPAC Extended Genetic Alphabet and the DNA bases letters
are from \code{IUPAC_CODE_MAP} in Biostrings package.
}
\value{
A matrix with position weight.
}
\author{
Ge Tan
}
\examples{
x <- "RMGNV"
IUPAC2Matrix(x)
}
|