Description Usage Arguments Details Value See Also Examples
validateConfig
validates a list of parameter key/value
pairs.
1 | validateConfig(parameters)
|
parameters |
A list containing key/value pairs which define the parameters for the analysis (see importConfig for more information). |
validateConfig
takes a list of key/value pairs which
represent the parameters for the analysis, validates them and then returns
the validated parameter key/value list.
Required key/value pairs are:
Directory where count data files are located.
Location of targets file which contains the mapping files and experimental conditions.
Directory where results directory will be created.
Other accepted key/value pairs and their defaults are:
Name of column in count files which contains the gene identifiers [Default: geneID]
[Significance cut-off, see results for more information Default: 0.05]
Name of condition in the targets file which was the control [Default: control]
Location of annotation file, see annotateDataset [Default: NULL]
Give a value of 1 to keep images which are used in the HTML report, see plotToFile for more information [Default: 0]
Give a value of 0 to run DESeq2 analysis functions or a value of 1 to report only the QC plots [Default: 1]
Give a value of 1 to run GO term enrichment analysis using topGO. If value of 1 given for go_analysis, an annotation file must be provided as a value for the annotation_file key [Default: 0]
validateConfig
returns a list containing the validated parameter
values with the names corresponding to their keys.
A list containing the validated parameters.
Other configuration functions: buildConfig
,
importConfig
, writeConfig
Other import functions: annotateDataset
,
importAnnotation
,
importConfig
, importTargets
,
readCountData
,
validateTargets
1 2 3 4 5 6 7 | # Basic parameter list
params <- list ( 'counts_directory' = "/path/to/counts.txt",
'targets_file' = "/path/to/targets.txt",
'results_directory' = "/path/to/result_dir")
# Validate parameters
validateConfig(params)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.