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/filter_mean.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
27 lines (26 sloc)
773 Bytes
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/verify_mclust.R | |
\name{filter_mean} | |
\alias{filter_mean} | |
\title{Filter For Mean (not as important imo)} | |
\usage{ | |
filter_mean( | |
mclust_result, | |
summarized_experiment, | |
assay_index = 1, | |
classification_index = 2 | |
) | |
} | |
\arguments{ | |
\item{mclust_result}{Object of class Mclust (Result of Mclust)} | |
\item{data}{Either SummarizedExperiment or matrix like object of expression values.} | |
} | |
\value{ | |
A character vector of gene names. | |
} | |
\description{ | |
This function filters out genes with a mean of expression in a group less then the givin minimum. | |
} | |
\details{ | |
3 options: either mclust_result + data (dont need assay/classification index), only mclust_result or only summarized_experiment (then need index) | |
} |