Skip to content

Commit

Permalink
one more comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bobular committed Feb 13, 2025
1 parent 5752cc4 commit 4ce3f5f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public static List<JSONObject> processExpressionData(RecordInstance geneRecord,
List<JSONObject> filteredData = new ArrayList<>();
String datasetId = experimentRow.getAttributeValue("dataset_id").getValue();
// add data from `expressionGraphsDataTable` where attribute "dataset_id" equals `datasetId`
// (this would be more efficient with a `Map<String, List<TableValueRow>>` made before the `expressionGraphs` loop)
List<TableValueRow> thisExperimentDataRows = new ArrayList<>();
for (TableValueRow dataRow : expressionGraphsDataTable) {
if (dataRow.getAttributeValue("dataset_id").getValue().equals(datasetId)) {
Expand Down

0 comments on commit 4ce3f5f

Please sign in to comment.