V2reportsBuscoStat

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
busco_lineagestr[optional]
busco_verstr[optional]
completefloat[optional]
single_copyfloat[optional]
duplicatedfloat[optional]
fragmentedfloat[optional]
missingfloat[optional]
total_countstr[optional]

Example

from ncbi.datasets.openapi.models.v2reports_busco_stat import V2reportsBuscoStat

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

# convert the object into a dict
v2reports_busco_stat_dict = v2reports_busco_stat_instance.to_dict()
# create an instance of V2reportsBuscoStat from a dict
v2reports_busco_stat_from_dict = V2reportsBuscoStat.from_dict(v2reports_busco_stat_dict)

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