Improve options menu wording

This commit is contained in:
2022-02-24 12:42:09 -06:00
parent a8b58d3f79
commit 108b0ec13f

View File

@@ -496,10 +496,10 @@ public class InteractiveInterface {
private static void options(){ private static void options(){
boolean backToMain = false; boolean backToMain = false;
while(!backToMain) { while(!backToMain) {
System.out.println("--------------OPTIONS---------------"); System.out.println("\n--------------OPTIONS---------------");
System.out.println("1) Turn cell sample file caching " + getOnOff(!BiGpairSEQ.cacheCells())); System.out.println("1) Turn " + getOnOff(!BiGpairSEQ.cacheCells()) + " cell sample file caching");
System.out.println("2) Turn sample plate file caching " + getOnOff(!BiGpairSEQ.cachePlate())); System.out.println("2) Turn " + getOnOff(!BiGpairSEQ.cachePlate()) + " plate file caching");
System.out.println("3) Turn graph/data file caching " + getOnOff(!BiGpairSEQ.cacheGraph())); System.out.println("3) Turn " + getOnOff(!BiGpairSEQ.cacheGraph()) + " graph/data file caching");
System.out.println("0) Return to main menu"); System.out.println("0) Return to main menu");
try { try {
input = sc.nextInt(); input = sc.nextInt();