This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Render GEO data in R shiny mainpanel
 getGEO("GSM11805")
      gsm <- getGEO(filename=system.file("extdata/GSM11805.txt.gz",package="GEOquery"))
      com<-Meta(gsm)$comment,
      output$com<-renderText(input$com),      
      textOutput("com")

I need to show the ouput in shiny mainpanel, so how can that be , i wrote the above code but it is not working

r rna-seq

1 answer

This is an R/Shiny programming question not a bioinformatics one even if it's applied to a bioinformatics data set. Your code is not structured as a Shiny app. Start by reading the Shiny tutorial.

Log in to answer this question.