It is my understanding that GUI components should display in the panel in the order in which they are coded. Please see the correct order after [1]. However, some times
choices = c("", "Y", "N")),
'''
,for example is displayed before
''' selectInput("selectYN", label = h5(strong("Do you accept these files for processing (Y/N)")),
choices = c("","Y", "N"), selected = NULL),
verbatimTextOutput("acceptedFiles"),
verbatimTextOutput("selectFiles")
, or the previous gets displayed
textOutput("displayingFiles"),
[1]
'''
verbatimTextOutput("filesToBeDisplayed"),
textOutput("displayingFiles"),
selectInput("selectYN", label = h5(strong("Do you accept these files for processing (Y/N)")),
choices = c("","Y", "N"), selected = NULL),
verbatimTextOutput("acceptedFiles"),
verbatimTextOutput("selectFiles"),
selectInput('selectfile', label = h5(strong("Select files. To undo selection select the selected file again and press delete")),c(Choose='', list.files("~/PATH")), multiple=TRUE, selectize=TRUE),
selectInput("bigtable", label = h5(strong("SELECT A LOOKUP TEXT FILE.To undo selection, select the selected file again and press delete.")),
choices = c(Choose='', list.files(file.path(getwd(), "directory"))), multiple=FALSE, selectize = TRUE),
verbatimTextOutput("lookUpTableSelection"),
verbatimTextOutput("findBigTable"),
verbatimTextOutput("retrieveSelection"),
verbatimTextOutput("noSulfation"),
selectInput("glyco", label = h5(strong("A concatenated file with that name has been found already processed by glyCount. Use this file (Y) or rerun glyCount on your PEPTIDES (N)?")),
choices = c("","Y", "N"), selected = NULL),
selectInput("mapfiles", label = h5(strong("Do you want to use one of these files as your merge_MAP (Y), or create a new one (N)? ")),
choices = c("", "Y", "N")),
verbatimTextOutput("mergeMapFiles"),
verbatimTextOutput("mapFilesAnswer"),
verbatimTextOutput("returnedLength"),
selectInput("IDENT", label = h5(strong("Enter the number of the merge_MAP file you want: 1-20")),
choices = c("", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15","16", "17", "18", "19", "20"),
multiple=FALSE, selectize = TRUE),
verbatimTextOutput("identFileMessage"),
verbatimTextOutput("mapFileList"),
verbatimTextOutput("mapFnotIdentical"),
selectInput("mapquestion", label = h5(strong("Do you want glycoPipe to create a NEW merge_MAP file to match detected sample/ file names (Y), or exit so you can edit merge_MAP file and start again (N) ")),
choices = c("", "Y", "N"),selected = NULL),
verbatimTextOutput("foundFalse"),
verbatimTextOutput("takeInput"),
selectInput("selectMergeMapFile", label = h5(strong( "Proceed with this merge_MAP file (Y), or have glycoPipe create a NEW merge_MAP file (N)? ")),
choices = c("Y", "N")),
verbatimTextOutput("selectMergeMap"),
verbatimTextOutput("mergemapfile"),
verbatimTextOutput("findmap"),
verbatimTextOutput("findmapmessage"),
selectInput("userquestion", label = h5(strong("Proceed with this merge_MAP file (Y), or exit glycoPipe so you can edit this file (N)? ")),
choices = c("", "Y", "N"),selected = NULL),
verbatimTextOutput("askuser"),