diff options
author | BonfaceKilz | 2021-05-25 14:09:47 +0300 |
---|---|---|
committer | zsloan | 2021-06-18 22:08:04 +0000 |
commit | 57a1194a12fe1a8565d8abd6b833da57f12898b4 (patch) | |
tree | 941f7ba5ab461e799948f0c3de16f6dcd931d616 /gn3 | |
parent | 12e8ca8eeefa2daea25f7dbc2fc9c99310766d1b (diff) | |
download | genenetwork3-57a1194a12fe1a8565d8abd6b833da57f12898b4.tar.gz |
db: phenotypes: Fix publication_mapping
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/db/phenotypes.py | 18 |
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", } |