man/DEGs_RP.Rd
510d573b
 % Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/DE_functions.R
 \name{DEGs_RP}
 \alias{DEGs_RP}
 \title{return DEGs UP and DOWN list based on Rank Product}
 \usage{
 DEGs_RP(
   tfit,
3d69d3a9
   lfc = NULL,
510d573b
   p = 0.05,
   assemble = "intersect",
   Rank = "adj.P.Val",
   nperm = 1e+05,
a7c3835a
   thres = 0.05,
510d573b
   keep.top = NULL,
   keep.group = NULL,
   ...
 )
 }
 \arguments{
 \item{tfit}{MArrayLM object generated by \code{\link[limma:ebayes]{limma::treat()}}}
 
 \item{lfc}{num, cutoff of logFC for DE analysis}
 
a7c3835a
 \item{p}{num, cutoff of p value for DE analysis}
510d573b
 
 \item{assemble}{'intersect' or 'union', whether to select intersected or
 union genes of different comparisons, default 'intersect'}
 
ce40d43d
 \item{Rank}{character, the variable for ranking DEGs, can be 'logFC',
 'adj.P.Val'..., default 'adj.P.Val'}
510d573b
 
 \item{nperm}{num, permutation runs of simulating the distribution}
 
b4b0fa5c
 \item{thres}{num, cutoff for rank product permutation test if
 feature_selection = "rankproduct", default 0.05}
a7c3835a
 
ce40d43d
 \item{keep.top}{NULL or num, whether to keep top n DEGs of specific
 comparison}
510d573b
 
8610fa87
 \item{keep.group}{NULL or pattern, specify the top DEGs of which comparison
510d573b
 or group to be kept}
8610fa87
 
 \item{...}{omitted}
510d573b
 }
e1f06472
 \value{
 A list of "UP" and "DOWN" genes
 }
510d573b
 \description{
 return DEGs UP and DOWN list based on Rank Product
 }