Nothing
HiddenHeaderTest_DE <- function(Chain1,
Chain2,
EpsilonM,
EpsilonD,
EpsilonR,
EFDR_M,
EFDR_D,
EFDR_R,
ProbThresholdM,
ProbThresholdD,
ProbThresholdR,
OrderVariable,
GroupLabel1,
GroupLabel2,
GenesSelect,
Plot,
PlotOffset,
Offset,
CheckESS,
...)
{
# Checking validity of input arguments
if (!is(Chain1, "BASiCS_Chain")) {
stop("'Chain1' is not a 'BASiCS_Chain' class object.")
}
if (!is(Chain2, "BASiCS_Chain")) {
stop("'Chain2' is not a 'BASiCS_Chain' class object.")
}
if (!.NSamples(Chain1) == .NSamples(Chain2)) {
stop("Chains must have an equal number of samples to run BASiCS_TestDE.")
}
# Test compatibility of both BASiCS_Chain objects
if (ncol(Chain1@parameters$mu) != ncol(Chain2@parameters$mu)) {
stop("The 'BASiCS_Chain' objects contain different number of genes.")
}
if (!identical(
colnames(Chain1@parameters$mu),
colnames(Chain2@parameters$mu))
) {
stop("The 'BASiCS_Chain' objects contain genes in different order.")
}
if (!is.logical(Plot) | length(Plot) != 1) {
stop("Please insert TRUE or FALSE for 'Plot' parameter")
}
if (!is.logical(PlotOffset) | length(PlotOffset) != 1) {
stop("Please insert TRUE or FALSE for 'PlotOffset' parameter")
}
if (!is.logical(Offset) | length(Offset) != 1) {
stop("Please insert TRUE or FALSE for 'Offset' parameter")
}
if ("OffSet" %in% names(list(...))) {
stop("'OffSet' is no longer a valid argument. Use 'Offset' instead.\n")
}
# Checks valid threshold input values
HiddenCheckThresholds(EpsilonM, ProbThresholdM, EFDR_M, Suffix = "M")
HiddenCheckThresholds(EpsilonD, ProbThresholdD, EFDR_D, Suffix = "D")
if (!is.null(Chain1@parameters$epsilon)) {
HiddenCheckThresholds(EpsilonR, ProbThresholdR, EFDR_R, Suffix = "R")
}
if (!(OrderVariable %in% c("GeneIndex", "GeneName", "Mu"))) {
stop("Invalid 'OrderVariable' value")
}
if (!is.character(GroupLabel1) | length(GroupLabel1) > 1) {
stop("Invalid value for 'GroupLabel1'")
}
if (!is.character(GroupLabel2) | length(GroupLabel2) > 1) {
stop("Invalid value for 'GroupLabel2'")
}
GeneName <- colnames(Chain1@parameters$mu)
if (!is.null(GenesSelect) & (length(GenesSelect) != length(GeneName))) {
stop("Invalid value for 'GenesSelect'")
}
if (!is.null(GenesSelect) & !is.logical(GenesSelect)) {
stop("Invalid value for 'GenesSelect'")
}
# if (!is.null(ProbThresholdM)) {
# message(
# "A value has been provided for `ProbThresholdM` \n",
# "EFDR will not be calibrated in differential mean test. \n"
# )
# }
# if (!is.null(ProbThresholdD)) {
# message(
# "A value has been provided for `ProbThresholdD` \n",
# "EFDR will not be calibrated in differential over-dispersion test. \n"
# )
# }
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.