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