Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cparsania committed Oct 10, 2024
1 parent 4caf2d4 commit ac43c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/rnaseq_related.R
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@ enrichMsigDB <- function(gene_list,


msigdb_t2g <- dplyr::bind_rows(msigdb_t2g,tibble::tibble(gs_name = "UN_ANNOTATED",
entrez_gene = bg_to_entrez$ENTREZID[!bg_to_entrez$ENTREZID %in% msigdb_t2g$entrez_gene] %>% as.numeric()))
entrez_gene = bg_to_entrez$ENTREZID[bg_to_entrez$ENTREZID %in% msigdb_t2g$entrez_gene] %>% as.numeric()))


}
Expand Down

0 comments on commit ac43c4d

Please sign in to comment.