https://github.com/ctlab/phantasus
Revision a9620dd90035eec9b8fe5e5edd1008619317fd19 authored by Alexey Sergushichev on 21 November 2019, 08:57:56 UTC, committed by Alexey Sergushichev on 21 November 2019, 08:57:56 UTC
1 parent 604085f
Raw File
Tip revision: a9620dd90035eec9b8fe5e5edd1008619317fd19 authored by Alexey Sergushichev on 21 November 2019, 08:57:56 UTC
Fixed direction in DESeq2
Tip revision: a9620dd
limmaAnalysis.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/limmaAnalysis.R
\name{limmaAnalysis}
\alias{limmaAnalysis}
\title{Differential Expression analysis.}
\usage{
limmaAnalysis(es, fieldValues)
}
\arguments{
\item{es}{ExpressionSet object. It should be normalized for
more accurate analysis.}

\item{fieldValues}{Vector of comparison values, mapping
categories' names to columns/samples}
}
\value{
Name of the file containing serialized de-matrix.
}
\description{
\code{limmaAnalysis} performs differential expression analysis
    from limma package and returns a ProtoBuf-serialized resulting
    de-matrix.
}
\examples{
\dontrun{
data(es)
limmaAnalysis(es, fieldValues = c("A", "A", "A", "B", "B"))
}
}
back to top