now with a shiny app
This commit is contained in:
agdamsbo 2019-11-08 10:50:24 +01:00
parent 2fc5ae9c8f
commit e606731d50
4 changed files with 191 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -1,7 +1,7 @@
Package: daDoctoR
Type: Package
Title: FUNCTIONS FOR HEALTH RESEARCH
Version: 0.1.0.9022
Version: 0.1.0.9023
Author@R: c(person("Andreas", "Gammelgaard Damsbo", email = "agdamsbo@pm.me", role = c("cre", "aut")))
Maintainer: Andreas Gammelgaard Damsbo <agdamsbo@pm.me>
Description: I am a Danish medical doctor involved in neuropsychiatric research.
@ -12,6 +12,7 @@ Imports: broom,
epiR,
ggplot2,
MASS
Suggest: shiny
License: GPL (>= 2)
Encoding: UTF-8
LazyData: true

92
inst/hwe_calc/server.R Normal file
View File

@ -0,0 +1,92 @@
#'
#' This is a Shiny web application. You can run the application by clicking
#' the 'Run App' button above.
#'
#' Find out more about building applications with Shiny here:
#'
#' http://shiny.rstudio.com/
#'
#'
#' User requests:
#'
#' - Proper labelling of chart
library(shiny)
library(ggplot2)
source("https://raw.githubusercontent.com/agdamsbo/daDoctoR/master/R/hwe_geno.R")
# Define server logic required to draw a histogram
server <- function(input, output, session) {
cale <- reactive({
as.numeric(input$ale)
})
dat<-reactive({
df<-data.frame(lbls=c("MM","MN","NN","MO","NO","OO"),
value=rbind(input$mm,input$mn,input$nn,input$mo,input$no,input$oo),
stringsAsFactors = FALSE)
print(df)
df
})
cmm <- reactive({
as.numeric(input$mm)
})
cmn <- reactive({
as.numeric(input$mn)
})
cnn <- reactive({
as.numeric(input$nn)
})
cmo <- reactive({
as.numeric(input$mo)
})
cno <- reactive({
as.numeric(input$no)
})
coo <- reactive({
as.numeric(input$oo)
})
hwe_p <- function() ({ hwe_geno(cmm(),cmn(),cnn(),cmo(),cno(),coo(),alleles=cale()) })
output$allele.tbl <- renderTable({ hwe_p()$allele.dist })
output$obs.tbl <- renderTable({ hwe_p()$observed.dist })
output$exp.tbl <- renderTable({ hwe_p()$expected.dist })
output$chi.val <- renderTable({ hwe_p()$chi.value })
output$p.val <- renderTable({ hwe_p()$p.value })
output$allele.dist <- renderText({"Allele distribution"})
output$obs.dist <- renderText({"Observed distribution"})
output$exp.dist <- renderText({"Expected distribution"})
output$chi <- renderText({"Chi square value"})
output$p <- renderText({"P value"})
output$geno.pie.plt<- renderPlot({
ggplot(dat(), aes(x="", y=value, fill=lbls))+
geom_bar(width = 1, stat = "identity")+
coord_polar("y", start=0)+
scale_fill_brewer(palette="Dark2")
})
output$geno.pie.ttl <- renderText({"Genotype distribution"})
}
# Run the application
shinyApp(ui = ui, server = server)

97
inst/hwe_calc/ui.R Normal file
View File

@ -0,0 +1,97 @@
#'
#' This is a Shiny web application. You can run the application by clicking
#' the 'Run App' button above.
#'
#' Find out more about building applications with Shiny here:
#'
#' http://shiny.rstudio.com/
#'
#'
#' User requests:
#'
#' - Proper labelling of chart
library(shiny)
library(ggplot2)
source("https://raw.githubusercontent.com/agdamsbo/daDoctoR/master/R/hwe_geno.R")
ui <- fluidPage(
# Application title
titlePanel("Chi square test of HWE for bi- or triallelic systems"),
sidebarLayout(
sidebarPanel(
# Input: Numeric entry for number of alleles ----
radioButtons(inputId = "ale",
label = "Number of alleles:",
inline = FALSE,
choiceNames=c("Two alleles (M, N)",
"Three alleles (M, N, O)"),
choiceValues=c(2,3)),
h4("Observed genotype distribution"),
numericInput(inputId = "mm",
label = "MM:",
value=NA),
numericInput(inputId = "mn",
label = "MN:",
value=NA),
numericInput(inputId = "nn",
label = "NN:",
value=NA),
conditionalPanel(condition = "input.ale==3",
numericInput(inputId = "mo",
label = "MO:",
value=NA),
numericInput(inputId = "no",
label = "NO:",
value=NA),
numericInput(inputId = "oo",
label = "OO:",
value=NA))
),
mainPanel(
tabsetPanel(
tabPanel("Summary",
h3(textOutput("obs.dist", container = span)),
htmlOutput("obs.tbl", container = span),
h3(textOutput("exp.dist", container = span)),
htmlOutput("exp.tbl", container = span),
h3(textOutput("allele.dist", container = span)),
htmlOutput("allele.tbl", container = span),
value=1),
tabPanel("Calculations",
h3(textOutput("chi", container = span)),
htmlOutput("chi.val", container = span),
h3(textOutput("p", container = span)),
htmlOutput("p.val", container = span),
value=2),
tabPanel("Plots",
h3(textOutput("geno.pie.ttl", container = span)),
plotOutput("geno.pie.plt"),
value=3),
selected= 2, type = "tabs")
)
)
)