The summary density plots show up to six scoring files
Get all scores
All scores can be found in the results directory, at:
hgdp/score/hgdp_pgs.txt.gz
Citation
Samuel A. Lambert, Benjamin Wingfield, Joel T. Gibson, Laurent Gil, Santhi Ramachandran, Florent Yvon, Shirin Saverimuttu, Emily Tinsley, Elizabeth Lewis, Scott C. Ritchie, Jingqin Wu, Rodrigo Canovas, Aoife McMahon, Laura W. Harris, Helen Parkinson, Michael Inouye. Enhancing the Polygenic Score Catalog with tools for score calculation and ancestry normalization. Nature Genetics (2024) | doi: 10.1038/s41588-024-01937-x
Important
For scores from the PGS Catalog, please remember to cite the original publications from which they came (these are listed in the metadata table).
Score licenses
Tip
Scores deposited in the PGS Catalog may have specific license terms
It’s important to follow the license terms when you reuse scoring files
Please check below for a summary of license terms
License terms for custom scoring files aren’t reported here, please check how the creators of the scoring file licensed their data
Code
# as of 2023-12-12 only non-default licenses are recorded in the scoring file headerdefault_ebi_terms <-"PGS obtained from the Catalog should be cited appropriately, and used in accordance with any licensing restrictions set by the authors. See EBI Terms of Use (https://www.ebi.ac.uk/about/terms-of-use/) for additional details."tibble(pgs_id =map_chr(json_list, "pgs_id"),license_text =map_chr(json_list, ~extract_chr_handle_null(.x$header, "license"))) %>%mutate(license_text =ifelse(license_text =="", default_ebi_terms, license_text)) %>%# display license terms for files in the PGS Catalog only (with a PGS ID)filter(startsWith(pgs_id, "PGS")) %>% DT::datatable(., colnames =c("PGS ID"="pgs_id","License text"="license_text" ))