Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mmRmeta/man/add_assay_norm.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (36 sloc)
1.26 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Generated by roxygen2: do not edit by hand | |
% Please edit documentation in R/add_assay_norm.R | |
\name{add_assay_norm} | |
\alias{add_assay_norm} | |
\title{Add Assay of Normalized Counts} | |
\usage{ | |
add_assay_norm( | |
summarized_experiment, | |
assay_index = 1, | |
method = "TMM", | |
calc_operation = "division", | |
new_index = NULL, | |
name = "normalizedCounts", | |
add_info_metadata = T | |
) | |
} | |
\arguments{ | |
\item{summarized_experiment}{SummarizedExperiment} | |
\item{assay_index}{Integer - index of assay or a matrix or dataframe the normalization factor is to be calculated from.} | |
\item{method}{Character - method for calculation used by \code{\link[edgeR]{calcNormFactors}}} | |
\item{calc_operation}{Character - how the values are normalized | Either by "division" or "multiplication"} | |
\item{new_index}{Integer - the index new assay is stored in | Should not be 1} | |
\item{name}{Character - name of new assay} | |
\item{add_info_metadata}{Logical - save information of changes in meta data?} | |
} | |
\value{ | |
SummarizedExperiment with new assay of normalized counts. | |
} | |
\description{ | |
This function adds a new assay with normalized counts to the SE. Normalization is done with any Method of edgeR. Standard method is TMM | |
} | |
\details{ | |
The rows are either multiplicated or devided by the normalization factor. | |
} | |
\examples{ | |
} |