Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

Locus1

Properties

Name Type Description Notes
name str A human-readable name or identifier for the locus. [optional]
assembly str The genome assembly to which coordinates relate (e.g., GRCh38).
chromosome str The number (or letter) designation for the chromosome, e.g. chr1 or chrX
start int The 1-based, closed (inclusive) starting coordinate.
end int The 1-based, closed (inclusive) ending coordinate.

Example

from igvf_client.models.locus1 import Locus1

# TODO update the JSON string below
json = "{}"
# create an instance of Locus1 from a JSON string
locus1_instance = Locus1.from_json(json)
# print the JSON string representation of the object
print(Locus1.to_json())

# convert the object into a dict
locus1_dict = locus1_instance.to_dict()
# create an instance of Locus1 from a dict
locus1_from_dict = Locus1.from_dict(locus1_dict)

[Back to Model list] [Back to API list] [Back to README]