Description Usage Arguments Details Value Author(s) See Also Examples
Get or set patterns for acceptable names of rowData
columns related to a differential expression analysis.
1 2 3 4 5 6 7 8 9 10 11 | getPValuePattern()
getLogFCPattern()
getAveAbPattern()
setPValuePattern(value)
setLogFCPattern(value)
setAveAbPattern(value)
|
value |
A character vector containing the acceptable prefixes for each statistic. |
These utilities allow users to easily get and set the patterns of acceptable fields in all
VolcanoPlots, MAPlots and LogFCLogFCPlots at once.
Any global settings only take effect (i) during setup of the iSEE
application
and (ii) if the first panel of each class does not have existing values in the
"PValueFields"
, "LogFCFields"
or "AveAbFields"
slots (which take precedence if present).
Each of these global settings are treated as patterns for partial matching.
For the "PValue"
pattern, columns with the names "PValue.X"
and "X.PValue"
will be considered acceptable matches.
All partial matching must be exact - regular expressions are not supported.
getPValuePattern
returns the patterns for acceptable column names for p-values.
getLogFCPattern
returns the patterns for acceptable column names for log-fold changes.
getAveAbPattern
returns the patterns for acceptable column names for the average abundances.
The corresponding setters set the global parts for each statistic and return NULL
invisibly.
Aaron Lun
VolcanoPlot, MAPlot and LogFCLogFCPlot, which are affected by these globals.
1 2 3 4 5 6 | old <- getPValuePattern()
setPValuePattern(LETTERS)
getPValuePattern()
setPValuePattern(old)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.