View source: R/utils-exported.R
getFCParams | R Documentation |
Fold change calculation
getFCParams(rGroups, ...)
rGroups |
A |
... |
Optional named arguments that override defaults. |
Fold change calculation can be used to easily identify significant changes between replicate groups. The
calculation process is configured through a paramater list, which can be constructed with the getFCParams
function. The parameter list has the following entries:
rGroups
the name of the two replicate groups to compare (taken from the rGroups
argument to
getFCParams
).
thresholdFC
: the threshold log FC for a feature group to be classified as increasing/decreasing.
thresholdPV
: the threshold log P for a feature group to be significantly different.
zeroMethod
,zeroValue
: how to handle zero values when calculating the FC: add
adds an
offset to zero values, "fixed"
sets zero values to a fixed number and "omit"
removes zero data. The
number that is added/set by the former two options is defined by zeroValue
.
PVTestFunc
: a function that is used to calculate P values (usually using t.test
).
PVAdjFunc
: a function that is used to adjust P values (usually using p.adjust
)
The code to calculate and plot Fold change data was created by Bas van de Velde.
featureGroups-class
and feature-plotting
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.