SequenceRange Constructor (String, Int64, Int64) |
Data constructor that sets the most commonly used fields.
Note that if the end value is less than start value then the end values is assigned to the start value.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public SequenceRange(
string id,
long start,
long end
)
Public Sub New (
id As String,
start As Long,
end As Long
)
public:
SequenceRange(
String^ id,
long long start,
long long end
)
new :
id : string *
start : int64 *
end : int64 -> SequenceRange
Parameters
- id
- Type: SystemString
An ID for the range. This does not need to be unique, and often represents the chromosome of the range. - start
- Type: SystemInt64
A starting index for the range. In the BED format this index starts counting from 0. - end
- Type: SystemInt64
An ending index for the range. In the BED format this index is exclusive.
See Also