Skip to content

Commit 350e9a2

Browse files
committed
Bugfix to CellRangerVDJ
1 parent f558da8 commit 350e9a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerVDJWrapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ private static void processCSV(PrintWriter writer, boolean printHeader, File inp
821821
{
822822
if (printHeader)
823823
{
824-
writer.println(line + "\tchain_type");
824+
writer.println(line + ",chain_type");
825825
}
826826

827827
continue;
@@ -897,7 +897,7 @@ else if (uniqueChains.size() == 2)
897897

898898
if (acceptableChains.contains(tokens[5]))
899899
{
900-
writer.println(StringUtils.join(tokens, ",") + "\t" + chainType);
900+
writer.println(StringUtils.join(tokens, ",") + "," + chainType);
901901
}
902902
}
903903

0 commit comments

Comments
 (0)