Description Usage Arguments Value Author(s) Examples
Returns a copy of the input RccSet where the copy's assayData has been produced via copyEnv() rather than a simple assignment – hence deep-copying the environment pointed to by assayData rather than just copying the pointer. This guarantees that if the copy's assayData is affected later in the code, assayData for the original won't be affected.
1 2 | ## S4 method for signature 'RccSet'
copyRccSet(rccSet)
|
rccSet |
A NanoString RccSet to be copied. |
A new RccSet that is a deep copy of the original.
Robert Ziman
1 2 3 4 | data(example_rccSet)
example_rccSet_2 <- copyRccSet(example_rccSet)
assayData(example_rccSet)
assayData(example_rccSet_2) # Should be different
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.