Click or drag to resize
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: Bio
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public SequenceRange(
	string id,
	long start,
	long end
)

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