aboutsummaryrefslogtreecommitdiff
path: root/gn3/db
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/phenotypes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/db/phenotypes.py b/gn3/db/phenotypes.py
index 92d8e84..9e40692 100644
--- a/gn3/db/phenotypes.py
+++ b/gn3/db/phenotypes.py
@@ -32,7 +32,7 @@ class Phenotype:
# Mapping from the Phenotype dataclass to the actual column names in the
# database
-phenotype_column_mapping = {
+phenotype_mapping = {
"id_": "id",
"pre_pub_description": "Pre_publication_description",
"post_pub_description": "Post_publication_description",
@@ -110,7 +110,7 @@ publication_mapping = {
TABLEMAP = {
- "Phenotype": phenotype_column_mapping,
+ "Phenotype": phenotype_mapping,
"PublishXRef": publish_x_ref_mapping,
}