Title: | MSigDB Gene Sets for Multiple Organisms in a Tidy Data Format |
---|---|
Description: | Provides the 'Molecular Signatures Database' (MSigDB) gene sets typically used with the 'Gene Set Enrichment Analysis' (GSEA) software (Subramanian et al. 2005 <doi:10.1073/pnas.0506580102>, Liberzon et al. 2015 <doi:10.1016/j.cels.2015.12.004>, Castanza et al. 2023 <doi:10.1038/s41592-023-02014-7>) as an R data frame. The package includes the human genes as listed in MSigDB as well as the corresponding symbols and IDs for frequently studied model organisms such as mouse, rat, pig, fly, and yeast. |
Authors: | Igor Dolgalev [aut, cre] |
Maintainer: | Igor Dolgalev <[email protected]> |
License: | MIT + file LICENSE |
Version: | 10.0.1 |
Built: | 2025-03-19 14:27:44 UTC |
Source: | https://github.com/igordot/msigdbr |
Retrieve a data frame of gene sets and their member genes. The original human genes can be converted into their corresponding counterparts in various model organisms, including mouse, rat, pig, zebrafish, fly, and yeast. The output includes gene symbols along with NCBI and Ensembl IDs.
msigdbr( species = "Homo sapiens", db_species = "HS", collection = NULL, subcollection = NULL, category = deprecated(), subcategory = deprecated() )
msigdbr( species = "Homo sapiens", db_species = "HS", collection = NULL, subcollection = NULL, category = deprecated(), subcategory = deprecated() )
species |
Species name for output genes, such as |
db_species |
Species abbreviation for the human or mouse databases ( |
collection |
Collection abbreviation, such as |
subcollection |
Sub-collection abbreviation, such as |
category |
|
subcategory |
Historically, the MSigDB resource has been tailored to the analysis of human-specific datasets, with gene sets exclusively aligned to the human genome.
Starting with release 2022.1, MSigDB incorporated a database of mouse-native gene sets and was split into human and mouse divisions ("Hs" and "Mm").
Each one is provided in the approved gene symbols of its respective species.
The versioning convention of MSigDB is in the format Year.Release.Species
.
The genes within each gene set may originate from a species different from the database target species as indicated by the gs_source_species
and db_target_species
fields.
Mouse MSigDB includes gene sets curated from mouse-centric datasets and specified in native mouse gene identifiers, eliminating the need for ortholog mapping.
To access the full dataset, please install the msigdbdf package (not available on CRAN):
install.packages("msigdbdf", repos = "https://igordot.r-universe.dev")
A data frame of gene sets with one gene per row.
https://www.gsea-msigdb.org/gsea/msigdb/index.jsp
Check that the 'msigdbdf' data package is installed. If not, provide instructions for installation. A dependency listed in DESCRIPTION Suggests is not guaranteed to be installed.
msigdbr_check_data(require_data = TRUE)
msigdbr_check_data(require_data = TRUE)
require_data |
Stop execution if the data package is not installed. |
List the collections available in the msigdbr package
msigdbr_collections(db_species = "Hs")
msigdbr_collections(db_species = "Hs")
db_species |
Species abbreviation for the human or mouse databases ( |
A data frame of the available collections.
List the species available in the msigdbr package
msigdbr_species()
msigdbr_species()
A data frame of the available species.