Class: BioMap
Retrieve reference sequence from BioMap
object
Ref
= getReference(BioObj
)
returns
the name of the reference sequence from a Ref
= getReference(BioObj
)BioMap
object.
This is the Reference
property of the object.
|
|
Construct a BioMap
object, and then retrieve
the reference sequence from the object:
% Construct a BioMap object from a SAM file BMObj1 = BioMap('ex1.sam'); % Retrieve the reference sequence from the object refSeq = getReference(BMObj1)
refSeq = seq1
An alternative to using the getReference
method
is to use dot indexing with the Reference
property:
BioObj.Reference