Main Content

pubMedID

Class: bioma.ExpressionSet
Namespace: bioma

Retrieve or set PubMed IDs in ExpressionSet object

Syntax

PMIDs = pubMedID(ESObj)
NewESObj = pubMedID(ESObj, NewPMIDs)

Description

PMIDs = pubMedID(ESObj) returns a character vector or cell array of character vectors containing the PubMed IDs from a MIAME object in an ExpressionSet object.

NewESObj = pubMedID(ESObj, NewPMIDs) replaces the PubMed IDs in the MIAME object in ESObj, an ExpressionSet object, with NewPMIDs, a character vector or cell array of character vectors specifying new PubMed IDs, and returns NewESObj, a new ExpressionSet object.

Input Arguments

ESObj

Object of the bioma.ExpressionSet class.

NewPMIDs

Character vector or cell array of character vectors containing new PubMed IDs.

Output Arguments

PMIDs

Character vector or cell array of character vectors containing the PubMed IDs from a MIAME object in an ExpressionSet object.

NewESObj

Object of the bioma.ExpressionSet class, returned after replacing the PubMed IDs.

Examples

Construct an ExpressionSet object, ESObj, as described in the Examples section of the bioma.ExpressionSet class reference page. Retrieve the PubMed identifiers stored in the MIAME object stored in the ExpressionSet object:

% Retrieve PubMed IDs from the MIAME object
PMIDs = pubMedID(ESObj)