From 3806d1e6ae5f4d47daf21fa09b9f80d52bb0ca2b Mon Sep 17 00:00:00 2001 From: puja-trivedi Date: Tue, 22 Oct 2024 20:50:10 +0000 Subject: [PATCH] pydantic version of genome_annotation model (genome_annotation.py) was updated. Pushed from brain-bican/model repository --- bkbit/models/genome_annotation.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bkbit/models/genome_annotation.py b/bkbit/models/genome_annotation.py index 252b39b..ffa56b2 100644 --- a/bkbit/models/genome_annotation.py +++ b/bkbit/models/genome_annotation.py @@ -5090,10 +5090,6 @@ class GeneAnnotation(Gene): """ An annotation describing the location, boundaries, and functions of individual genes within a genome annotation. """ - - def __hash__(self): - return hash(tuple([self.id, self.name, self.molecular_type, self.description])) - linkml_meta: ClassVar[LinkMLMeta] = LinkMLMeta({'from_schema': 'https://identifiers.org/brain-bican/genome-annotation-schema', 'id_prefixes': ['ENSEMBL', 'MGI', 'NCBIGene']})