
Last chance! 50% off unlimited learning
Sale ends in
Makes the union between two omics_array objects.
# S4 method for omics_array,omics_array
unionOmics(M1, M2)
a omics-array or a list of omics-arrays
a omics-array or nothing if M1 is a list of omics-arrays
Returns a omics_array object which is the union of M1 and M2.
Returns a omics_array object which is the union of the elements of M1.
Bertrand Frederic, Myriam Maumy-Bertrand.
if(require(CascadeData)){
data(micro_S, package="CascadeData")
#Create another omicsarray object with 100 genes
Mbis<-M<-as.omics_array(micro_S[1:100,],1:4,6)
#Rename the 100 genes
Mbis@name<-paste(M@name,"bis")
rownames(Mbis@omicsarray) <- Mbis@name
#Union (merge without duplicated names) of the two omicsarrays.
str(unionOmics(M,Mbis))
}
Run the code above in your browser using DataLab