Класс: bioma.data.MIAME
Пакет: bioma.data
Объедините два объекта MIAME
NewMIAMEObj
= combine(MIAMEObj1
, MIAMEObj2
)
данные об объединениях из двух MIAME возражают и возвращают новый объект MIAME. NewMIAMEObj
= combine(MIAMEObj1
, MIAMEObj2
)combine
метод конкатенирует свойства двух объектов вместе.
|
Объект |
Создайте два объекта MIAME, и затем объедините их:
% Create a MATLAB structure containing GEO Series data geoStruct1 = getgeodata('GSE4616'); % Create a second MATLAB structure containing GEO Series data geoStruct2 = getgeodata('GSE11287'); % Import bioma.data package to make constructor function % available import bioma.data.* % Construct MIAME object from the first structure MIAMEObj1 = MIAME(geoStruct1); % Construct MIAME object from the second structure MIAMEObj2 = MIAME(geoStruct2); % Combine the two MIAME objects newMIAMEObj = combine(MIAMEObj1, MIAMEObj2)