Skip to content

Commit

Permalink
Added constants for acknowledged authors
Browse files Browse the repository at this point in the history
  • Loading branch information
fyvon committed Oct 5, 2023
1 parent 0068762 commit 6f9273a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
55 changes: 55 additions & 0 deletions pgs_web/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
ENSEMBL_VERSION = 105

USEFUL_URLS = {
'NHGRI_URL' : 'https://www.genome.gov/',
'BAKER_URL' : 'https://baker.edu.au',
'EBI_URL' : 'https://www.ebi.ac.uk',
'HDR_UK_CAM_URL' : 'https://www.hdruk.ac.uk/about-us/our-locations/health-data-research-uk-hdr-uk-cambridge/',
Expand Down Expand Up @@ -129,3 +130,57 @@
'OTH': 'Additional Diverse Ancestries',
'NR' : 'Ancestry Not Reported'
}

PGS_CONTRIBUTORS = [
{'name': 'Sam Lambert','group': ['curators']},
{'name': 'Laurent Gil','group': ['hdruk']},
{'name': 'Benjamin Wingfield','group': ['ebi']},
{'name': 'Florent Yvon','group': ['inouye']},
{'name': 'Aoife McMahon', 'group': ['curators','nhgri-ebi']},
{'name': 'Santhi Ramachandran','group': ['nhgri-ebi']},
{'name': 'Elizabeth Lewis','group': ['nhgri-ebi']},
{'name': 'Laura Harris','group': ['nhgri-ebi']},
{'name': 'Helen Parkinson', 'group': ['spot']},
{'name': 'Richard Houghton','group': ['hdruk']},
{'name': 'Prof. John Danesh','group': ['hdruk']},
{'name': 'Michael Inouye', 'group': ['inouye']}
]

PGS_GROUPS = {
'inouye': {
'name': 'Inouye Lab',
'url': 'https://www.inouyelab.org/'
},
'curators': {
'name': 'PGS Catalog Data Curators'
},
'hdruk': {
'name': 'Health Data Research UK, Cambridge',
'url': 'https://www.hdruk.ac.uk/about-us/our-locations/health-data-research-uk-hdr-uk-cambridge/'
},
'nhgri-ebi': {
'name': 'NHGRI-EBI GWAS Catalog Team',
'url': 'https://www.ebi.ac.uk/gwas'
},
'spot': {
'name': 'EMBL-EBI Samples Phenotypes and Ontologies Team',
'url': 'https://www.ebi.ac.uk/about/spot-team'
},
'ebi': {
'name': 'European Bioinformatics Institute',
'url': 'https://www.ebi.ac.uk'
}
}

PGS_PREVIOUS_CONTRIBUTORS = [
{'name': 'Emily Tinsley','group': ['ebi']},
{'name': 'Shirin Saverimuttu','group': ['ebi']},
{'name': 'Jackie MacArthur','group': ['ebi']},
{'name': 'Simon Jupp','group': ['ebi']},
{'name': 'James Hayhurst','group': ['ebi']},
{'name': 'Trish Whetzel','group': ['ebi']},
{'name': 'Michael Chapman','group': ['hdruk']},
{'name': 'Jonathan Marten', 'group': ['inouye']},
{'name': 'Petar Scepanovic', 'group': ['inouye']},
{'name': 'Gad Abraham', 'group': ['inouye']}
]
3 changes: 2 additions & 1 deletion pgs_web/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
'catalog.context_processors.pgs_urls',
'catalog.context_processors.pgs_settings',
'catalog.context_processors.pgs_search_examples',
'catalog.context_processors.pgs_info'
'catalog.context_processors.pgs_info',
'catalog.context_processors.pgs_contributors'
]

if PGS_ON_GAE == 1 and DEBUG == False:
Expand Down

0 comments on commit 6f9273a

Please sign in to comment.