-
Couldn't load subscription status.
- Fork 17
Closed
Description
If ' unrecognized [] ' && ' duplicate [] ' empty, continue to analysis ( do nothing for now )
If arrays !empty, provide user feedback indicating invalidity (unrecognized and/or duplicates)
- underline tokens violating input conventions
- pop up message indicating type of invalidity
if multiple instances of same type of infraction, only provide one message
if input token count < 4, ask for larger input
Test cases:
-
All valid
genes: [
"TP53",
"ATM",
"MCM3",
"XPO1"
] -
One unrecognized
genes: [
"notAGene",
"TP53",
"ATM",
"MCM3",
] -
One set duplicate
genes: [
"TP53",
"TP53",
"ATM",
"MCM3",
] -
One set duplicate and one unrecongnized
genes: [
"notAGene",
"TP53",
"TP53",
"ATM",
] -
All valid, but not enough tokens
genes: [
"TP53",
"ATM",
"MCM3",
]