From fbee5912732965337c61f2d5b617052a8bdc3ac1 Mon Sep 17 00:00:00 2001 From: eugenefischer <66030419+eugenefischer@users.noreply.github.com> Date: Sun, 25 Sep 2022 22:36:02 -0500 Subject: [PATCH] Change indentation --- src/main/java/Plate.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/Plate.java b/src/main/java/Plate.java index 83d1c3b..8b26ec3 100644 --- a/src/main/java/Plate.java +++ b/src/main/java/Plate.java @@ -153,7 +153,9 @@ public class Plate { } //returns a map of the counts of the sequence at cell index sIndex, in a specific well - public Map assayWellsSequenceS(int n, int... sIndices) { return this.assayWellsSequenceS(n, n+1, sIndices);} + public Map assayWellsSequenceS(int n, int... sIndices) { + return this.assayWellsSequenceS(n, n+1, sIndices); + } //returns a map of the counts of the sequence at cell index sIndex, in a range of wells public Map assayWellsSequenceS(int start, int end, int... sIndices) {