Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.17 KB

File metadata and controls

36 lines (26 loc) · 1.17 KB

ATACBamSummaryStats

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_async_client.models.atac_bam_summary_stats import ATACBamSummaryStats

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

# convert the object into a dict
atac_bam_summary_stats_dict = atac_bam_summary_stats_instance.to_dict()
# create an instance of ATACBamSummaryStats from a dict
atac_bam_summary_stats_from_dict = ATACBamSummaryStats.from_dict(atac_bam_summary_stats_dict)

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