Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wolski committed Mar 31, 2021
1 parent 1017c5c commit 005151e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions inst/shiny/bfabricProgenesisQI/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,17 @@ shinyServer(function(input, output, session) {
message("dim QI_Data_prepared$Int_ID", dim(QI_Data_prepared$Int_ID))
message("", QI_Data_prepared$Annotation$Condition)

bga_res_id <- p389Devel::runBGA(QI_Data_prepared$Int_ID, QI_Data_prepared$Annotation$Condition )
bga_res_all <- p389Devel::runBGA(QI_Data_prepared$Int_ID_All, QI_Data_prepared$Annotation$Condition )
bga_res_id <- p389Devel::runBGA(QI_Data_prepared$Int_ID, QI_Data_prepared$Annotation )
bga_res_all <- p389Devel::runBGA(QI_Data_prepared$Int_ID_All, QI_Data_prepared$Annotation )


rmarkdown::render(file.path(tempdir(),markdownFile),
output_file = values$pdf,
output_format = "pdf_document",
params=list(bga_res_id = bga_res_id,
bga_res_all = bga_res_all,
resourceid = QI_Data$resourceid), envir = new.env())
resourceid = QI_Data$resourceid),
envir = new.env())

message(values$pdf)
file_pdf_content <- base64encode(readBin(values$pdf, "raw",
Expand Down

0 comments on commit 005151e

Please sign in to comment.