aboutsummaryrefslogtreecommitdiff
path: root/gn3/db/__init__.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-07-19 09:42:18 +0300
committerFrederick Muriuki Muriithi2023-07-19 09:48:26 +0300
commit38478ff22686afcb74cfdd43a73c7a42710bfca4 (patch)
treea87fd75aaa6dff6230dd4a2e20153b799b44f8d9 /gn3/db/__init__.py
parent82722fefd007edbddf08175686570e2ed307097e (diff)
downloadgenenetwork3-38478ff22686afcb74cfdd43a73c7a42710bfca4.tar.gz
Extract code dealing with ProbeSets to their own module.
Diffstat (limited to 'gn3/db/__init__.py')
-rw-r--r--gn3/db/__init__.py4
1 files changed, 2 insertions, 2 deletions
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