splitDiffFeatureGroups {simphony} | R Documentation |
Split differential featureGroups
Description
Split a diffFeatureGroups data.frame into a list of two featureGroups
data.frames, which can then be passed to simphony()
.
Usage
splitDiffFeatureGroups(diffFeatureGroups, checkValid = TRUE)
Arguments
diffFeatureGroups |
|
checkValid |
Logical for whether to only return rows for which both amplitudes are greater than or equal to zero and both standard deviations are greater than zero. |
Value
List of two data.table
s with possible columns base
, sd
, amp
,
and phase
, depending on the columns in diffFeatureGroups
.
See Also
Examples
dGroups = data.frame(meanAmp = c(1, 1, 1, 1), dAmp = c(1, 1, 2, 2),
meanPhase = c(0, 0, 0, 0), dPhase = c(0, 3, 0, 3))
featureGroups = splitDiffFeatureGroups(dGroups)
[Package simphony version 1.0.3 Index]