Skip to content

Commit da774b2

Browse files
committed
Make ParagraphStep split jobs
1 parent 02cca7c commit da774b2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/alignment/ParagraphStep.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ public ParagraphStep()
4343
));
4444
}
4545

46+
@Override
47+
public boolean doSplitJobs()
48+
{
49+
return true;
50+
}
51+
4652
@Override
4753
public boolean canProcess(SequenceOutputFile o)
4854
{

singlecell/src/org/labkey/singlecell/analysis/AbstractSingleCellHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ else if ("NotUsed".equals(val))
10631063
pf.setMaximumFractionDigits(2);
10641064

10651065
NumberFormat decimal = DecimalFormat.getNumberInstance();
1066-
decimal.setGroupingUsed(false);
1066+
decimal.setGroupingUsed(true);
10671067

10681068
descriptions.add("Total Cells: " + decimal.format(totalCells));
10691069
if (hashingUsed)

0 commit comments

Comments
 (0)