Skip to content

Commit

Permalink
fixed SE input passing
Browse files Browse the repository at this point in the history
  • Loading branch information
Katarzyna Sikora committed Oct 30, 2018
1 parent e8a7911 commit 2ec596c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.R
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ server <- function(input, output, session) {
merge_request<-ifelse(isolate(input$merge),"I want to request sample merging. Please consider the information I entered in the Merge column of the sample sheet. \n Please update the sample sheet after merging files.","No sample merging is needed.")
b_eff_request<-ifelse(isolate(input$beff),"I expect batch effect in my data.","No batch effect is expected.")
nodiff_request<-ifelse(isolate(input$nodiff),"I don't need differential analysis.","I want to request differential analysis.")
SE_request<-ifelse(isolate(input$nodiff),"I have single end data.","I have paired end data.")
SE_request<-ifelse(isolate(input$SE),"I have single end data.","I have paired end data.")
cc<-isolate(input$sender)
#from<-sprintf("<sendmailR@%s>", Sys.info()[4])
from<-"sendmailR@ie-freiburg.mpg.de"
Expand Down
1 change: 1 addition & 0 deletions dev
Submodule dev added at 4e6b07

0 comments on commit 2ec596c

Please sign in to comment.