aboutsummaryrefslogtreecommitdiff
path: root/gn3
diff options
context:
space:
mode:
authorBonfaceKilz2021-05-25 14:09:47 +0300
committerBonfaceKilz2021-05-26 12:13:00 +0300
commit24732c07fb63091ec944e87df8645731d7c90bb4 (patch)
treefcb6a58f4afb24baf4018de32487643c2ed6e850 /gn3
parent78e9a515e16ed5f50eb77c47d25f9ac66391c91d (diff)
downloadgenenetwork3-24732c07fb63091ec944e87df8645731d7c90bb4.tar.gz
db: phenotypes: Fix publication_mapping
Diffstat (limited to 'gn3')
-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",
}