unionMicro-methods {Cascade} | R Documentation |
Makes the union between two micro_array objects.
## S4 method for signature 'micro_array,micro_array'
unionMicro(M1, M2)
M1 |
a micro-array or a list of micro-arrays |
M2 |
a micro-array or nothing if M1 is a list of micro-arrays |
Returns a micro_array object which is the union of M1 and M2.
Returns a micro_array object which is the union of the elements of M1.
data(M)
#Create another microarray object with 100 genes
Mbis<-M
#Rename the 100 genes
Mbis@name<-paste(M@name,"bis")
rownames(Mbis@microarray) <- Mbis@name
#Union (merge without duplicated names) of the two microarrays.
str(unionMicro(M,Mbis))