diff options
author | BonfaceKilz | 2020-11-11 21:37:04 +0300 |
---|---|---|
committer | GitHub | 2020-11-11 21:37:04 +0300 |
commit | d60d8bbff8fbd032a3cf72559719a7f78881965a (patch) | |
tree | 9ae956af7a43465851e4f786d416755e890337d8 /wqflask/tests/unit/base/data.py | |
parent | 25f7d30b9f052ec5d812bfe3bf9713df850cc267 (diff) | |
parent | dbeefadc25fb2bc6e04b4baa4b35bbbd5298e880 (diff) | |
download | genenetwork2-d60d8bbff8fbd032a3cf72559719a7f78881965a.tar.gz |
Merge pull request #477 from BonfaceKilz/feature/add-glossary-page
Feature/add glossary page
Diffstat (limited to 'wqflask/tests/unit/base/data.py')
-rw-r--r-- | wqflask/tests/unit/base/data.py | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/wqflask/tests/unit/base/data.py b/wqflask/tests/unit/base/data.py new file mode 100644 index 00000000..06a5a989 --- /dev/null +++ b/wqflask/tests/unit/base/data.py @@ -0,0 +1,110 @@ +gen_menu_json = """ +{ + "datasets": { + "human": { + "HLC": { + "Liver mRNA": [ + [ + "320", + "HLC_0311", + "GSE9588 Human Liver Normal (Mar11) Both Sexes" + ] + ], + "Phenotypes": [ + [ + "635", + "HLCPublish", + "HLC Published Phenotypes" + ] + ] + } + }, + "mouse": { + "BXD": { + "Genotypes": [ + [ + "600", + "BXDGeno", + "BXD Genotypes" + ] + ], + "Hippocampus mRNA": [ + [ + "112", + "HC_M2_0606_P", + "Hippocampus Consortium M430v2 (Jun06) PDNN" + ] + ], + "Phenotypes": [ + [ + "602", + "BXDPublish", + "BXD Published Phenotypes" + ] + ] + } + } + }, + "groups": { + "human": [ + [ + "HLC", + "Liver: Normal Gene Expression with Genotypes (Merck)", + "Family:None" + ] + ], + "mouse": [ + [ + "BXD", + "BXD", + "Family:None" + ] + ] + }, + "species": [ + [ + "human", + "Human" + ], + [ + "mouse", + "Mouse" + ] + ], + "types": { + "human": { + "HLC": [ + [ + "Phenotypes", + "Traits and Cofactors", + "Phenotypes" + ], + [ + "Liver mRNA", + "Liver mRNA", + "Molecular Trait Datasets" + ] + ] + }, + "mouse": { + "BXD": [ + [ + "Phenotypes", + "Traits and Cofactors", + "Phenotypes" + ], + [ + "Genotypes", + "DNA Markers and SNPs", + "Genotypes" + ], + [ + "Hippocampus mRNA", + "Hippocampus mRNA", + "Molecular Trait Datasets" + ] + ] + } + } +} +""" |