Skip to content
Snippets Groups Projects
Commit 3cb213b9 authored by tpylak's avatar tpylak
Browse files

LMS-1264 DSU: improve email summary reports

SVN: 13519
parent 4d780acc
No related branches found
No related tags found
No related merge requests found
......@@ -155,13 +155,14 @@ public class EntityTrackingEmailData
seqencingSampleData.getSequencingSample().getIdentifier();
final boolean newlyTracked = seqencingSampleData.isNewlyTracked();
sb.append(String.format(
"%sSequencing sample: '%s' with %d new Flow Lane samples tracked",
"%sSequencing sample: '%s' with %d new Flow Lane samples tracked%s",
newlyTracked ? "new " : "", sequencingSampleIdentifier,
flowLaneSamplesSize, flowLaneSamplesSize > 0 ? ": " : ""));
flowLaneSamplesSize, flowLaneSamplesSize > 0 ? ": \n" : ""));
for (Sample flowLaneSample : seqencingSampleData.getFlowLaneSamples())
{
sb.append(flowLaneSample.getIdentifier() + ", ");
sb.append("\t" + flowLaneSample.getIdentifier());
}
sb.append("\n");
}
}
sb.append("\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment