Skip to content

Commit

Permalink
Disable console question
Browse files Browse the repository at this point in the history
  • Loading branch information
sneumann committed Aug 22, 2024
1 parent c8d51df commit 4617bdc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions R/DataProcessing.R
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,9 @@ readProjectData <- function(fileLines, progress = FALSE)
#Start of importing annotation part1 from two
# Display the message and give the user the option to choose whether to upload the annotation file or not.
#If Y shows selection window for annotation file. if N ignores annotation process
message("Do you want to upload the annotation file? (Y/N)")
user_choice <- readline()
#message("Do you want to upload the annotation file? (Y/N)")
#user_choice <- readline()
user_choice <- "N"

if (toupper(user_choice) == "Y") {

Expand Down

0 comments on commit 4617bdc

Please sign in to comment.