From 38478ff22686afcb74cfdd43a73c7a42710bfca4 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 19 Jul 2023 09:42:18 +0300 Subject: Extract code dealing with ProbeSets to their own module. --- gn3/db/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gn3/db/__init__.py') diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py index 149a344..3b063f1 100644 --- a/gn3/db/__init__.py +++ b/gn3/db/__init__.py @@ -5,15 +5,15 @@ from typing import Any, Dict, List, Optional, Generator, Tuple, Union from typing_extensions import Protocol from gn3.db.metadata_audit import MetadataAudit +from gn3.db.probesets import Probeset from gn3.db.phenotypes import Phenotype -from gn3.db.phenotypes import Probeset from gn3.db.phenotypes import Publication from gn3.db.phenotypes import PublishXRef from gn3.db.metadata_audit import metadata_audit_mapping +from gn3.db.probesets import probeset_mapping from gn3.db.phenotypes import phenotype_mapping -from gn3.db.phenotypes import probeset_mapping from gn3.db.phenotypes import publication_mapping from gn3.db.phenotypes import publish_x_ref_mapping -- cgit v1.2.3