Skip to content

Commit

Permalink
fixed input data issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jminnier committed Nov 8, 2019
1 parent ce1e244 commit e211e9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions server-inputdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,7 @@ analyzeDataReactive <-
isfclogged = input$isfclogged)

}else if(input$inputdat_type=="expression_only") {
analyze_expression_data(alldata, tmpgenecols, tmpexprcols,
analysis_method = input$analysis_method)
analyze_expression_data(alldata, analysis_method = input$analysis_method)

}

Expand Down
4 changes: 2 additions & 2 deletions ui-tab-inputdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ tabPanel("Input Data",
),
radioButtons("analysis_method","Analysis Method",
c("edgeR"="edgeR",
"voom/limma"="voom_limma",
"Array or counts already normalized, linear models"="lmmodel"))
"voom/limma"="voom",
"Array or counts already normalized, linear models"="linear_model"))
),
conditionalPanel(condition="input.inputdat_type=='analyzed'",
downloadLink("example_analysis_file",label="Download Example Analysis Results File"),
Expand Down

0 comments on commit e211e9d

Please sign in to comment.