aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2021-05-25 14:09:47 +0300
committerzsloan2021-06-18 22:08:04 +0000
commit57a1194a12fe1a8565d8abd6b833da57f12898b4 (patch)
tree941f7ba5ab461e799948f0c3de16f6dcd931d616
parent12e8ca8eeefa2daea25f7dbc2fc9c99310766d1b (diff)
downloadgenenetwork3-57a1194a12fe1a8565d8abd6b833da57f12898b4.tar.gz
db: phenotypes: Fix publication_mapping
-rw-r--r--gn3/db/phenotypes.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/gn3/db/phenotypes.py b/gn3/db/phenotypes.py
index ddcd11e..ee523ad 100644
--- a/gn3/db/phenotypes.py
+++ b/gn3/db/phenotypes.py
@@ -97,15 +97,15 @@ class Publication:
publication_mapping = {
"id_": "id",
- "PubMed_ID": "pubmed_id",
- "Abstract": "abstract",
- "Authors": "authors",
- "Title": "title",
- "Journal": "journal",
- "Volume": "volume",
- "Pages": "pages",
- "Month": "month",
- "Year": "year",
+ "pubmed_id": "PubMed_ID",
+ "abstract": "Abstract",
+ "authors": "Authors",
+ "title": "Title",
+ "journal": "Journal",
+ "volume": "Volume",
+ "pages": "Pages",
+ "month": "Month",
+ "year": "Year",
}