diff options
author | BonfaceKilz | 2021-05-20 18:51:48 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-20 23:25:59 +0300 |
commit | 0134a72d4a076b5aca43ce2838a9cd28fe2b65b4 (patch) | |
tree | bbfb996d0f5f9e70d6ab6f08667156ad268d08ac | |
parent | 413244dffca4220f2e91422ae813dc95da9118a6 (diff) | |
download | genenetwork3-0134a72d4a076b5aca43ce2838a9cd28fe2b65b4.tar.gz |
db: phenotypes: Add Publication table mapping
-rw-r--r-- | gn3/db/phenotypes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gn3/db/phenotypes.py b/gn3/db/phenotypes.py index 9e40692..514037d 100644 --- a/gn3/db/phenotypes.py +++ b/gn3/db/phenotypes.py @@ -112,6 +112,8 @@ publication_mapping = { TABLEMAP = { "Phenotype": phenotype_mapping, "PublishXRef": publish_x_ref_mapping, + "Publication": publication_mapping, +} } |