Skip to content

Commit

Permalink
Merge pull request #1 from jdblischak/include-ldref
Browse files Browse the repository at this point in the history
Include LD reference panel in bulk download
  • Loading branch information
bschilder authored Apr 10, 2021
2 parents a49b648 + 2499339 commit c5f5edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.R
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ server <- function(input, output, session) {
merged_DT <- lapply(1:nrow(dat_paths), function(i){
ROW <- dat_paths[i,]
dat <- data.table::fread(ROW$file_path, nThread = 1)
dat <- cbind(study=ROW$study, ROW$study_type, dat)
dat <- cbind(study=ROW$study, study_type=ROW$study_type, LD_ref=ROW$LD_ref, dat)
incProgress(1/nrow(dat_paths), detail = paste(round(i/nrow(dat_paths),2)*100,"%"))
return(dat)
}) %>% data.table::rbindlist(fill = T)
Expand Down

0 comments on commit c5f5edb

Please sign in to comment.