Description Usage Arguments Value Author(s) Examples
View source: R/metaseqr.util.R
This function validates the arguments passed by the user to the normalization, statistics and filtering algorithms supported by metaseqR. As these are given into lists and passed to the algorithms, the list member names must be valid algorithm arguments for the pipeline not to crash. This function performs these checks and ignores any invalid arguments.
1 | validate.list.args(what, method = NULL, arg.list)
|
what |
what a keyword determining the procedure
for which to validate arguments. It can be one of
|
method |
the normalization/statistics/filtering
algorithm included in metaseqR for which to validate
user input. When |
arg.list |
the user input list of arguments. |
A list with valid arguments to be used as user input in the algorithms supported by metaseqR.
Panagiotis Moulos
1 2 3 4 5 6 | norm.args.edger <- list(method="TMM",refColumn=NULL,
logratioTrim=0.3,sumTrim=0.05,doWeighting=TRUE,
Bcutoff=-1e10,p=0.75)
# Bcutoff does not exist, will throw a warning and ignore it.
norm.args.edger <- validate.list.args("normalization",
"edger",norm.args.edger)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.