Skip to content
Snippets Groups Projects
Commit 9f54e6aa authored by Holger Brandl's avatar Holger Brandl
Browse files

added method to get ensembl build

parent 2c101732
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,10 @@ guess_mart <- function(gene_id){
}
}
get_ensembl_build <- function(){
biomaRt::listMarts() %>% as.data.frame() %>% filter(biomart=="ensembl") %>% with(str_match(version, " ([0-9]*) ")) %>% subset(select=2)
}
guess_pathview_species <- function(gene_id){
an_id <-gene_id[1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment