Skip to content

Commit

Permalink
Add natural sort to instrument_runs table
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Aug 28, 2024
1 parent 3be4d6d commit 90dc3ff
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ else if (SequenceAnalysisSchema.TABLE_BARCODES.equalsIgnoreCase(name))

return ret;
}
else if (SequenceAnalysisSchema.TABLE_INSTRUMENT_RUNS.equalsIgnoreCase(name))
{
TableInfo ret = super.createWrappedTable(name, sourceTable, cf);
LDKService.get().applyNaturalSort((AbstractTableInfo)ret, "name");

return ret;
}
else if (SequenceAnalysisSchema.TABLE_ANALYSES.equalsIgnoreCase(name))
{
return createAnalysesTable(sourceTable, cf);
Expand Down

0 comments on commit 90dc3ff

Please sign in to comment.