Skip to content
Snippets Groups Projects
Commit 78cbda66 authored by Erand Smakaj's avatar Erand Smakaj
Browse files

fix path bug in chipseq vizapp

parent bd4d5cb8
No related merge requests found
Pipeline #10773 passed with stages
in 5 minutes and 42 seconds
......@@ -23,7 +23,7 @@ shinyServer(function(input, output, session) {
files <- list.files(path = rootdir, pattern = ".bed")
cat("\nBed files found:\n\n")
filenames <- as.list(paste0(rootdir, files));
filenames <- as.list(paste0(rootdir, '/', files));
names(filenames) <- files;
print(filenames)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment