DefaultSlot | R Documentation |
The default slot is used by default by many functions including
GetData
,GetTable
or FitKinetics
DefaultSlot(data, value = NULL)
DefaultSlot(data) <- value
data |
A grandR object |
value |
the name of the new default slot |
The default slot can be set either by data<-DefaultSlot(data,"norm")
or by DefaultSlot(data)<-"norm"
.
Either the name of the default slot for DefaultSlot(data) or the grandR data object having the new default slot
Slots
sars <- ReadGRAND(system.file("extdata", "sars.tsv.gz", package = "grandR"),
design=c("Cell",Design$dur.4sU,Design$Replicate))
DefaultSlot(sars)
sars <- Normalize(sars) # default behavior is to update the default slot
DefaultSlot(sars)
DefaultSlot(sars)="count"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.