r Sys.time()
x <- Cq() x.result <- x[,c("exprs","effs")] names(x.result) <- c("Cq","Efficiency") knitr::kable(x.result, digits = 4, format = "markdown")
if (r.cutoff()== "None") { text1() } if (r.cutoff()== "Replace"){ x <- Cq.cut() x.result <- x[,c("exprs","effs")] names(x.result) <- c("Cq","Efficiency") knitr::kable(x.result, digits = 4) }
if (replace.nas()== "None"){text1()} if (replace.nas()== "Replace"){ x <- Cq.rena() x.result <- x[,c("exprs","effs")] names(x.result) <- c("Cq","Efficiency") knitr::kable(x.result, digits = 4) }
if (replace.value()=="None"){text1()} if (replace.value()=="Replace"){ x <- Cq.re() x.result <- x[,c("exprs","effs")] names(x.result) <- c("Cq","Efficiency") knitr::kable(x.result, digits = 4) }
if (n.det() == "None"){ text2() } if ((n.det()== "Mean")||(n.det()=="Median")){ x <- Cq.nd() x.result <- x[,c("exprs","effs")] names(x.result) <- c("Cq","Efficiency") knitr::kable(x.result, digits = 4) }
x <- CqReps() x.result <- x[,c("ID","Cq","sd.Cq")] knitr::kable(x.result, digits = 4)
x <- effsReps() x.result <- x[,c("ID","Cq","sd.Cq","effs","sd.effs")] knitr::kable(x.result, digits = 4)
x <- deltaCq() x.result <- x[,c("ID","deltaCq","sd.deltaCq")] knitr::kable(x.result, digits = 4)
knitr::kable(deltadeltaCq(), digits = 4)
knitr::kable(NRQeffs(), digits = 4)
##cat("Input file name: ", ifelse(is.null(input[["input.file"]][["name"]]), "\n\n") cat("Select the type of PCR: ", input$pcrtype, "\n\n") cat("Select efficiency computing method: ", input$efficiencymethod, "\n\n") cat("Select to apply the cut off: ", input$replaceabovecutoff, "\n\n") cat("Cq cut off: ", input$Cqcutoff, "\n\n") cat("efficiency cut off: ", input$effscutoff, "\n\n") cat("Select to replace the specific Cq and Eff. values: ", input$replacevalue, "\n\n") cat("The row, where Cq value is to be replaced: ", input$Cqrow, "\n\n") cat("New Cq value: ", input$cqvalue, "\n\n") cat("The row, where efficiency value is to be replaced: ", input$effsrow, "\n\n") cat("New Efficiency value: ", input$neweffs, "\n\n") cat("Select to replace all NAs by user defined value: ", input$replacenas, "\n\n") cat("Provide the Cq value to replace NAs: ", input$cqna, "\n\n") cat("Provide the efficiency value to replace NAs: ", input$effsna, "\n\n") cat("Select method to remove nondetects: ", input$nondetects, "\n\n") cat("Select method to combine Technical Replicates: ", input$ctechreps, "\n\n") cat("Type the name of reference gene under column 'Target Name': ", input$Reference, "\n\n")
sessionInfo("RTqPCR")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.