Description Usage Arguments Details Methods Note See Also Examples
Coercing methods were defined to convert maiges objects of classes
maiges and maigesRaw into objects of classes
marrayNorm and marrayRaw
from package marray or classes MAList and
RGList from package limma and vice-versa.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## S4 method for signature 'maiges,marrayNorm'
as(from, to)
## S4 method for signature 'marrayNorm,maiges'
as(from, to)
## S4 method for signature 'maiges,MAList'
as(from, to)
## S4 method for signature 'MAList,maiges'
as(from, to)
## S4 method for signature 'maigesRaw,marrayRaw'
as(from, to)
## S4 method for signature 'marrayRaw,maigesRaw'
as(from, to)
## S4 method for signature 'maigesRaw,RGList'
as(from, to)
## S4 method for signature 'RGList,maigesRaw'
as(from, to)
|
from |
object of class |
to |
character string specifying the class of object to which the
object |
When converting from objects of classes RGList or
marrayRaw to class maigesRaw, the
slot Sf and Sb will always receive the channel 2 (red)
values, and Rf and Rb will always receive channel 1
(green) values. For the normalized ojects, the slot W will be
equivalent to the M values.
When converting from objects of classes maigesRaw or
maiges to classes RGList,
marrayRaw,
MAList or
marrayNorm the correct values
of the two channels or of M values are calculated.
convert an object of class
maiges into an object of class marrayNorm.
convert an object of class
marrayNorm into an object of class maiges.
convert an object of class
maiges into an object of class MAList.
convert an object of class
MAList into an object of class maiges.
convert an object of class
maigesRaw into an object of class marrayRaw.
convert an object of class
marrayRaw into an object of class maigesRaw.
convert an object of class
maigesRaw into an object of class RGList.
convert an object of class
RGList into an object of class maigesRaw.
It is possible to use Package convert to convert objects between classes defined in packages limma, marray and Biobase.
as in the methods package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Loading the dataset
data(gastro)
## Converting a maigesRaw class object into marrayRaw object
as(gastro.raw, "marrayRaw")
## Converting a maigesRaw class object into RGList
as(gastro.raw, "RGList")
## Converting a maiges class object into marrayNorm object
as(gastro.norm, "marrayNorm")
## Converting a maiges class object into MAList object
as(gastro.summ, "MAList")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.