paired {ABSSeq} | R Documentation |
Accessors for the 'paired' slot of a ABSDataSet object, return a logical value
## S4 method for signature 'ABSDataSet' paired(object) ## S4 replacement method for signature 'ABSDataSet,logical' paired(object)<-value
object |
a |
value |
value a boolean object, should be either TRUE or FALSE. |
The 'paired' is the switch for differential expression detection among paired samples, with a boolean value: TRUE or FALSE (default). When "paired" is TRUE, the replicates in each group should be equal.
data(simuN5) obj <- ABSDataSet(counts=simuN5$counts, groups=factor(simuN5$groups)) paired(obj) paired(obj) <- TRUE paired(obj)