Skip to content
Snippets Groups Projects
get_inference_dds.Rd 1.17 KiB
Newer Older
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Generated by roxygen2: do not edit by hand
Arnaud Duvermy's avatar
Arnaud Duvermy committed
% Please edit documentation in R/wrapper_dds.R
\name{get_inference_dds}
\alias{get_inference_dds}
Arnaud Duvermy's avatar
Arnaud Duvermy committed
\title{Calculate Inference for Differential Expression Analysis}
\usage{
Arnaud Duvermy's avatar
Arnaud Duvermy committed
get_inference_dds(dds_full, lfcThreshold, altHypothesis, correction_method)
Arnaud Duvermy's avatar
Arnaud Duvermy committed
}
\arguments{
\item{dds_full}{A data frame containing DESeq2 results, including estimate and standard error information.}

\item{lfcThreshold}{Log fold change threshold for determining differentially expressed genes.}

\item{altHypothesis}{Alternative hypothesis for testing, one of "greater", "less", or "two.sided".}

\item{correction_method}{Method for multiple hypothesis correction, e.g., "BH" (Benjamini-Hochberg).}
}
\value{
A data frame containing inference results, including statistics, p-values, and adjusted p-values.
}
\description{
This function calculates inference for differential expression analysis based on the results of DESeq2.
}
\examples{
\dontrun{
# Example usage of the function
Arnaud Duvermy's avatar
Arnaud Duvermy committed
inference_result <- get_inference_dds(dds_full, lfcThreshold = 0.5, 
Arnaud Duvermy's avatar
Arnaud Duvermy committed
                                   altHypothesis = "greater", 
                                   correction_method = "BH")
}
}