Skip to content

Commit 635cf9f

Browse files
committed
Always read off URL for sequence pipeline page
1 parent 0c4d74d commit 635cf9f

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/panel/BaseSequencePanel.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,6 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
269269
return;
270270
}
271271

272-
// If auto-loading, assume we want to read the URL
273-
thePanel.down('#readUrlParams').setValue(true);
274-
275272
var recIdx = store.find('name', LABKEY.ActionURL.getParameter('template'));
276273
if (recIdx > -1) {
277274
thePanel.down('labkey-combo').setValue(store.getAt(recIdx));
@@ -300,12 +297,6 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
300297
helpPopup: 'By default, the pipelines jobs and their outputs will be created in the workbook you selected. However, in certain cases, such as bulk submission of many jobs, it might be preferable to submit each job to the source folder/workbook for each input. Checking this box will enable this.',
301298
fieldLabel: 'Submit Jobs to Same Folder/Workbook as Readset',
302299
labelWidth: 200
303-
},{
304-
xtype: 'checkbox',
305-
itemId: 'readUrlParams',
306-
helpPopup: 'If true, any parameters provided on the URL with the same name as a parameter in the JSON will be read and override the template.',
307-
fieldLabel: 'Read Parameters From URL',
308-
labelWidth: 200
309300
}]
310301
}],
311302
buttons: [{
@@ -362,8 +353,7 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
362353
delete json.submitJobToReadsetContainer;
363354
}
364355

365-
var readUrlParams = win.down('#readUrlParams').getValue();
366-
win.sequencePanel.applySavedValues(json, readUrlParams);
356+
win.sequencePanel.applySavedValues(json, true);
367357

368358
var submitJobToReadsetContainer = win.sequencePanel.down('[name="submitJobToReadsetContainer"]');
369359
if (submitJobToReadsetContainer) {

0 commit comments

Comments
 (0)