| Bioinformatics Toolbox™ | ![]() |
GEOSOFTData = geosoftread(File)
| File | Either of the following:
|
| GEOSOFTData | MATLAB structure containing information from a GEO SOFT format file. |
GEOSOFTData = geosoftread(File) reads a Gene Expression Omnibus (GEO) SOFT format Sample file (GSM) or Data Set file (GDS), and then creates a MATLAB structure, GEOSOFTdata, with the following fields.
| Fields | Description |
|---|---|
| Scope | Type of file read (SAMPLE or DATASET) |
| Accession | Accession number for record in GEO database. |
| Header | Microarray experiment information. |
| ColumnDescriptions | Cell array containing descriptions of columns in the data. |
| ColumnNames | Cell array containing names of columns in the data. |
| Data | Array containing microarray data. |
| Identifier (GDS files only) | Cell array containing probe IDs. |
| IDRef (GDS files only) | Cell array containing indices to probes. |
Note Currently, the Bioinformatics Toolbox™ software supports only Sample (GSM) and Data Set (GDS) records. |
Retrieve GSM data from the GEO Web site and save it to a file.
geodata = getgeodata('GSM3258','ToFile','GSM3258.txt');
Use geosoftread to read a local copy of the GSM file, instead of accessing it from the GEO Web site.
geodata = geosoftread('GSM3258.txt')
geodata =
Scope: 'SAMPLE'
Accession: 'GSM3258'
Header: [1x1 struct]
ColumnDescriptions: {6x1 cell}
ColumnNames: {6x1 cell}
Data: {5355x6 cell}Read the GDS file for photosynthesis in proteobacteria.
gdsdata = geosoftread('GDS329.soft')
gdsdata =
Scope: 'DATASET'
Accession: 'GDS329'
Header: [1x1 struct]
ColumnDescriptions: {6x1 cell}
ColumnNames: {6x1 cell}
IDRef: {5355x1 cell}
Identifier: {5355x1 cell}
Data: [5355x6 double]Bioinformatics Toolbox functions: galread, getgeodata, gprread, ilmnbsread, sptread
![]() | genpeptread | getblast | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |