QualitativeSequenceGetSubSequence Method |
Return a new QualitativeSequence representing a range (subsequence) of this QualitativeSequence.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public ISequence GetSubSequence(
long start,
long length
)
Public Function GetSubSequence (
start As Long,
length As Long
) As ISequence
public:
virtual ISequence^ GetSubSequence(
long long start,
long long length
) sealed
abstract GetSubSequence :
start : int64 *
length : int64 -> ISequence
override GetSubSequence :
start : int64 *
length : int64 -> ISequence
Parameters
- start
- Type: SystemInt64
The index of the first symbol in the range. - length
- Type: SystemInt64
The number of symbols in the range.
Return Value
Type:
ISequenceThe sub-sequence.
Implements
ISequenceGetSubSequence(Int64, Int64)See Also