setReplicates {denoiSeq} | R Documentation |
Updates the value of the replicates slot for the readsData object supplied.
setReplicates(object, repsval)
## S4 method for signature 'readsData'
setReplicates(object, repsval)
object |
a readsData object |
repsval |
A list of column indices for the samples in each condition. |
The same readsData object with the replicates slot updated.
readsData
: Alters the value of the replicates slot of
a readsData object.
RD <- new("readsData", counts = ERCC)
reps <- list(A = c(2,4,5,3,10),B = c(9,7,1,8,6))
RD <- setReplicates(RD, reps)
RD@replicates