From f7709ada73db7b690e3fe204c4846d0880d83c75 Mon Sep 17 00:00:00 2001 From: eugenefischer <66030419+eugenefischer@users.noreply.github.com> Date: Sat, 22 Oct 2022 15:50:35 -0500 Subject: [PATCH] Change order of metadata comments --- src/main/java/PlateFileWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/PlateFileWriter.java b/src/main/java/PlateFileWriter.java index a493412..191ce0e 100644 --- a/src/main/java/PlateFileWriter.java +++ b/src/main/java/PlateFileWriter.java @@ -93,8 +93,8 @@ public class PlateFileWriter { printer.printComment("Cell source file name: " + sourceFileName); printer.printComment("Each row represents one well on the plate."); printer.printComment("Plate size: " + size); - printer.printComment("Error rate: " + error); printer.printComment("Well populations: " + wellPopulationsString); + printer.printComment("Error rate: " + error); if(isExponential){ printer.printComment("Lambda: " + lambda); }