utils-de {iSEEu} | R Documentation |
Set or get the acceptable fields to use for all Panel instances related to differential expression, including VolcanoPlot and MAPlot. These functions are now deprecated.
.getAcceptablePValueFields() .getAcceptableLogFCFields() .getAcceptableAveAbFields() .setAcceptablePValueFields(value) .setAcceptableLogFCFields(value) .setAcceptableAveAbFields(value)
value |
Character vector of acceptable fields (usually in the |
.getAcceptablePValueFields
will return a character vector of acceptable names for p-value fields.
.getAcceptableLogFCFields
will return a character vector of acceptable names for log-FC fields.
.getAcceptableAveAbFields
will return a character vector of acceptable names for average abundance fields.
The setter functions will define the set of acceptable fields and return NULL
invisibly.
Aaron Lun
old <- .getAcceptablePValueFields() old .setAcceptablePValueFields("YAY") .getAcceptablePValueFields() # Restoring. .setAcceptablePValueFields(old)