Skip to content
Snippets Groups Projects
Commit e4dabd45 authored by kohleman's avatar kohleman
Browse files

append a tab at the end so that the tsv file is valid and can be read by the tsv reporting plugin

SVN: 15996
parent 66d0d7fd
No related branches found
No related tags found
No related merge requests found
...@@ -283,10 +283,10 @@ class FlowLaneFeeder extends AbstractPostRegistrationDataSetHandlerForFileBasedU ...@@ -283,10 +283,10 @@ class FlowLaneFeeder extends AbstractPostRegistrationDataSetHandlerForFileBasedU
} }
if (srfInfo.isEmpty() == false) if (srfInfo.isEmpty() == false)
{ {
builder.append("\n==== SRF Info ====\n"); builder.append("\n==== SRF Info ====\t\n");
for (String line : srfInfo) for (String line : srfInfo)
{ {
builder.append(line).append('\n'); builder.append(line).append("\t\n");
} }
} }
String sampleCode = flowLaneSample.getCode(); String sampleCode = flowLaneSample.getCode();
......
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