Custom Slot Getters and Setters | R Documentation |
TapestriExperiment
slotsGet and set custom slots in TapestriExperiment
. Slots include
barcodeProbe
for a sample barcode probe ID
and grnaProbe
for a gRNA-associated probe ID. These are used as shortcuts for
moveNonGenomeProbes()
and countBarcodedReads()
.
gmmParams
holds parameters and metadata for GMM copy number calling models.
barcodeProbe(x)
## S4 method for signature 'TapestriExperiment'
barcodeProbe(x)
barcodeProbe(x) <- value
## S4 replacement method for signature 'TapestriExperiment'
barcodeProbe(x) <- value
grnaProbe(x)
## S4 method for signature 'TapestriExperiment'
grnaProbe(x)
grnaProbe(x) <- value
## S4 replacement method for signature 'TapestriExperiment'
grnaProbe(x) <- value
gmmParams(x)
## S4 method for signature 'TapestriExperiment'
gmmParams(x)
x |
A |
value |
Character, probe ID to assign to slot |
TapestriExperiment |
A |
For the getter methods barcodeProbe
, grnaProbe
, and gmmParams
, the value
of the given slot is returned. For the setter methods barcodeProbe
and grnaProbe
,
a TapestriExperiment
object is returned with modifications made to the given slot.
barcodeProbe(TapestriExperiment)
: barcodeProbe getter
barcodeProbe(TapestriExperiment) <- value
: barcodeProbe setter
grnaProbe(TapestriExperiment)
: grnaProbe getter
grnaProbe(TapestriExperiment) <- value
: grnaProbe setter
gmmParams(TapestriExperiment)
: gmmParams getter
tap.object <- newTapestriExperimentExample() # example TapestriExperiment object
barcodeProbe(tap.object) <- "Probe01"
barcodeProbe(tap.object)
grnaProbe(tap.object) <- "Probe02"
grnaProbe(tap.object)
gmmParams(tap.object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.