Skip to content

Commit

Permalink
Clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
igordot committed Mar 3, 2025
1 parent 586d906 commit 0a07b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/msigdbr.R
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ msigdbr <- function(species = "Homo sapiens", db_species = "HS", collection = NU
mdb <- dplyr::arrange(mdb, .data$gs_name, .data$db_gene_symbol, .data$gene_symbol)

# Add columns from the old msigdbr output if old arguments are present
if (lifecycle::is_present(category) | lifecycle::is_present(subcategory)) {
if (lifecycle::is_present(category) || lifecycle::is_present(subcategory)) {
mdb <- dplyr::mutate(
mdb,
entrez_gene = .data$ncbi_gene,
Expand Down

0 comments on commit 0a07b9e

Please sign in to comment.