CharlesJB / ENCODExplorer

5 stars 4 forks source link

shinyEncode sources a file that does not exist #26

Closed ericfournier2 closed 7 years ago

ericfournier2 commented 7 years ago

In shinyEncode(), the line

source(file = system.file("inst/shiny/ui.R", package = "ENCODExplorer"))

should be

source(file = system.file("shiny/ui.R", package = "ENCODExplorer"))

since everything in the inst directory gets placed in the package root upon installation.