expressions
Class: bioma.ExpressionSet
Namespace: bioma
Retrieve or set Expressions
DataMatrix
object from ExpressionSet object
Syntax
ExpressionsDMObj
= expressions(ESObj
)
NewESObj
= expressions(ESObj
, NewDMObj
)
Description
returns
the ExpressionsDMObj
= expressions(ESObj
)Expressions
element (DataMatrix object), which
contains expression values, from an ExpressionSet object.
replaces
the NewESObj
= expressions(ESObj
, NewDMObj
)Expressions
element (DataMatrix object) in ESObj
,
an ExpressionSet object, with NewDMObj
,
a new DataMatrix object, and returns NewESObj
,
a new ExpressionSet object.
Input Arguments
|
Object of the |
|
Object of the DataMatrix class. |
Output Arguments
|
DataMatrix object containing the expression values from the |
|
ExpressionSet object returned after replacing the |
Examples
Construct an ExpressionSet object, ESObj
,
as described in the Examples section
of the bioma.ExpressionSet
class reference page.
Extract the Expressions
DataMatrix object from
it:
% Extract expression values from Expressions DataMatrix object ExpressionsDMObj = expressions(ESObj);