Skip to content

Commit 643d0ee

Browse files
committed
Fix syntax in Plink/keep file
1 parent edab51b commit 643d0ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/PlinkPcaStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private void addSubjectSelectOptions(String text, List<String> args, String argN
9898
try (CSVWriter writer = new CSVWriter(IOUtil.openFileForBufferedUtf8Writing(outputFile), '\t', CSVWriter.NO_QUOTE_CHARACTER))
9999
{
100100
Arrays.stream(names).forEach(x -> {
101-
writer.writeNext(new String[]{x, x});
101+
writer.writeNext(new String[]{x});
102102
});
103103
}
104104
catch (IOException e)

0 commit comments

Comments
 (0)