Skip to content

Commit e2f009d

Browse files
committed
Rename instrument run to batch/run
1 parent 89a474d commit e2f009d

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

SequenceAnalysis/resources/schemas/sequenceanalysis.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@
11771177
<isHidden>true</isHidden>
11781178
</column>
11791179
<column columnName="instrument_run_id">
1180-
<columnTitle>Instrument Run</columnTitle>
1180+
<columnTitle>Batch/Run</columnTitle>
11811181
<fk>
11821182
<fkDbSchema>sequenceanalysis</fkDbSchema>
11831183
<fkTable>instrument_runs</fkTable>

SequenceAnalysis/resources/views/sequenceAnalysisDetails.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'<div style="margin-bottom: 10px;"></div>' +
1818
//'<div id="analysisNav_'+webpart.wrapperDivId+'"></div>' +
1919
//'<br>' +
20+
'<div id="outputs_'+webpart.wrapperDivId+'"></div>' +
2021
'<div id="qualityMetrics_'+webpart.wrapperDivId+'"></div>' +
2122
'<div style="margin-bottom: 10px;"></div>' +
2223
'<div id="readsetDiv_'+webpart.wrapperDivId+'"/>'
@@ -52,6 +53,15 @@
5253
successCallback: onSuccess
5354
});
5455

56+
LDK.Utils.getReadOnlyQWP({
57+
title: 'Outputs',
58+
schemaName: 'sequenceanalysis',
59+
queryName: 'outputfiles',
60+
maxRows: 20,
61+
containerPath: Laboratory.Utils.getQueryContainerPath(),
62+
filterArray: [LABKEY.Filter.create('analysis_id', analysisId, LABKEY.Filter.Types.EQUAL)]
63+
}).render('outputs_'+webpart.wrapperDivId);
64+
5565
LDK.Utils.getReadOnlyQWP({
5666
title: 'Quality Metrics',
5767
schemaName: 'sequenceanalysis',

SequenceAnalysis/resources/web/SequenceAnalysis/panel/SequenceImportPanel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,8 +2335,8 @@ Ext4.define('SequenceAnalysis.panel.SequenceImportPanel', {
23352335
}).show(btn);
23362336
}
23372337
}, {
2338-
text: 'Assign To Instrument Run',
2339-
tooltip: 'Click to assign the selected rows to an existing or new instrument run',
2338+
text: 'Assign To Instrument Run/Batch',
2339+
tooltip: 'Click to assign the selected rows to an existing or new instrument run or batch',
23402340
scope: this,
23412341
handler: function (btn) {
23422342
var grid = btn.up('grid');

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceNormalizationTask.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,8 @@ public RecordedActionSet run() throws PipelineJobException
345345
Pair<File, File> p = extractReadGroup(fp.file1, fp.platformUnit, actions, outDir);
346346
fp.file1 = p.first;
347347
fp.file2 = p.second;
348+
getHelper().getFileManager().addIntermediateFile(fp.file1);
349+
getHelper().getFileManager().addIntermediateFile(fp.file2);
348350
}
349351

350352
//NOTE: continue to normalize sequence, in case the BAM-derived data has non-standard encoding

SequenceAnalysis/test/src/org/labkey/test/tests/external/labModules/SequenceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ private void readsetFeaturesTest() throws IOException
382382
dr = new DataRegionTable("query", this);
383383

384384
log("Verifying instrument run and details page");
385-
clickAndWait(dr.link(2, "Instrument Run"));
385+
clickAndWait(dr.link(2, "Batch/Run"));
386386

387387
waitForText("Instrument Run Details");
388388
waitForText("Run Id"); //crude proxy for loading of the details panel

0 commit comments

Comments
 (0)