Skip to content

Commit

Permalink
Update LONGO.r
Browse files Browse the repository at this point in the history
Fixed ordering of datasets from BioMart to allow transformation to data frame
  • Loading branch information
aminaademovic authored Oct 2, 2024
1 parent fe5a400 commit 80e12fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/LONGO.r
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ LONGO <- function() {
host="www.ensembl.org")
datasets <- biomaRt::listDatasets(ensembl)
datasets <- datasets[1]
datasets <- datasets[order(datasets[1]),]
datasets <- datasets[order(datasets$dataset), ]
datasets <- as.data.frame(datasets)
ui <- shiny::shinyUI({
shiny::navbarPage("LONGO",
Expand Down

0 comments on commit 80e12fe

Please sign in to comment.