Skip to content

Commit 90dc3ff

Browse files
committed
Add natural sort to instrument_runs table
1 parent 3be4d6d commit 90dc3ff

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/query/SequenceAnalysisUserSchema.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,13 @@ else if (SequenceAnalysisSchema.TABLE_BARCODES.equalsIgnoreCase(name))
118118

119119
return ret;
120120
}
121+
else if (SequenceAnalysisSchema.TABLE_INSTRUMENT_RUNS.equalsIgnoreCase(name))
122+
{
123+
TableInfo ret = super.createWrappedTable(name, sourceTable, cf);
124+
LDKService.get().applyNaturalSort((AbstractTableInfo)ret, "name");
125+
126+
return ret;
127+
}
121128
else if (SequenceAnalysisSchema.TABLE_ANALYSES.equalsIgnoreCase(name))
122129
{
123130
return createAnalysesTable(sourceTable, cf);

0 commit comments

Comments
 (0)