Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.26 KB

File metadata and controls

36 lines (26 loc) · 1.26 KB

ATACFragmentsAlignmentStats

Properties

Name Type Description Notes
download str [optional]
href str [optional]
type str [optional]
size int [optional]
md5sum str [optional]
width int [optional]
height int [optional]

Example

from igvf_client.models.atac_fragments_alignment_stats import ATACFragmentsAlignmentStats

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

# convert the object into a dict
atac_fragments_alignment_stats_dict = atac_fragments_alignment_stats_instance.to_dict()
# create an instance of ATACFragmentsAlignmentStats from a dict
atac_fragments_alignment_stats_from_dict = ATACFragmentsAlignmentStats.from_dict(atac_fragments_alignment_stats_dict)

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