V2reportsVirusAssembly

December 6, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
accessionstr[optional]
is_completebool[optional]
is_annotatedbool[optional]
isolateV2reportsIsolate[optional]
source_databasestr[optional]
protein_countint[optional]
hostV2reportsOrganism[optional]
virusV2reportsOrganism[optional]
bioprojectsList[str][optional]
locationV2reportsVirusAssemblyCollectionLocation[optional]
update_datestr[optional]
release_datestr[optional]
nucleotide_completenessstr[optional]
completenessV2reportsVirusAssemblyCompleteness[optional] [default to V2reportsVirusAssemblyCompleteness.UNKNOWN]
lengthint[optional]
gene_countint[optional]
mature_peptide_countint[optional]
biosamplestr[optional]
mol_typestr[optional]
nucleotideV2reportsSeqRangeSetFasta[optional]
purpose_of_samplingV2reportsPurposeOfSampling[optional] [default to V2reportsPurposeOfSampling.PURPOSE_OF_SAMPLING_UNKNOWN]
sra_accessionsList[str][optional]
submitterV2reportsVirusAssemblySubmitterInfo[optional]
lab_hoststr[optional]
is_lab_hostbool[optional]
is_vaccine_strainbool[optional]
segmentstr[optional]

Example

from ncbi.datasets.openapi.models.v2reports_virus_assembly import V2reportsVirusAssembly

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

# convert the object into a dict
v2reports_virus_assembly_dict = v2reports_virus_assembly_instance.to_dict()
# create an instance of V2reportsVirusAssembly from a dict
v2reports_virus_assembly_from_dict = V2reportsVirusAssembly.from_dict(v2reports_virus_assembly_dict)

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