sampleVarNames
Class: bioma.ExpressionSet
Namespace: bioma
Retrieve or set sample variable names in ExpressionSet object
Syntax
SamVarNames
= sampleVarNames(ESObj
)
SamVarNames
= sampleVarNames(ESObj
, Subset
)
NewESObj
= sampleVarNames(ESObj
, Subset
, NewSamVarNames
)
Description
returns
a cell array of character vectors specifying all sample variable names
in an ExpressionSet object. SamVarNames
= sampleVarNames(ESObj
)
returns
a cell array of character vectors specifying a subset the sample variable
names in an ExpressionSet object. SamVarNames
= sampleVarNames(ESObj
, Subset
)
replaces
the sample variable names specified by NewESObj
= sampleVarNames(ESObj
, Subset
, NewSamVarNames
)Subset
in ESObj
,
an ExpressionSet object, with NewSamVarNames
,
and returns NewESObj
, a new ExpressionSet
object.
Input Arguments
|
Object of the |
|
One of the following to specify a subset of the sample variable names in an ExpressionSet object:
|
|
New sample variable names for specific sample variable names within an ExpressionSet object, specified by one of the following:
The number of sample variable names in |
Output Arguments
|
Cell array of character vectors specifying all or some of the
sample variable names in an ExpressionSet object. The sample variable
names are the column names of the |
|
Object of the |
Examples
Construct an ExpressionSet object, ESObj
,
as described in the Examples section
of the bioma.ExpressionSet
class reference page.
Retrieve the sample variable names from the ExpressionSet object:
% Retrieve the sample variable names VNames = sampleVarNames(ESObj)