| Contents | Index |
GEOData = geoseriesread(File)
| File | Either of the following:
|
| GEOData | MATLAB structure containing the following fields:
|
GEOData = geoseriesread(File) reads a Gene Expression Omnibus (GEO) Series (GSE) format file, and then creates a MATLAB structure, GEOData, with the following fields.
| Fields | Description |
|---|---|
| Header | Header text from the GEO Series (GSE) format file, typically containing a description of the data or experiment information. |
| Data | DataMatrix object containing the data from a GEO Series (GSE) format file. The columns and rows of the DataMatrix object correspond to the sample IDs and Ref IDs, respectively, from the GEO Series (GSE) format file. |
Retrieve Series (GSE) data from the GEO Web site and save it to a file.
geodata = getgeodata('GSE11287','ToFile','GSE11287.txt');
In a subsequent MATLAB session, you can access the Series (GSE) data from your local file, instead of retrieving it from the GEO Web site.
geodata = geoseriesread('GSE11287.txt')
geodata =
Header: [1x1 struct]
Data: [45101x6 bioma.data.DataMatrix]Access the sample IDs using the colnames property of a DataMatrix object.
sampleIDs = geodata.Data.colnames sampleIDs = 'GSM284935' 'GSM284936' 'GSM284937' 'GSM284938' 'GSM284939' 'GSM284940'
affyread | agferead | galread | geosoftread | getgeodata | gprread | ilmnbsread | sptread

See how to analyze, visualize, and model biological data and systems using MathWorks products.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |