Skip to content

Commit ff09396

Browse files
authored
Merge pull request #195 from LabKey/fb_merge_22.11_to_develop
Merge discvr-22.11 to develop
2 parents 7f7ed4d + 8aeb0b3 commit ff09396

File tree

24 files changed

+3035
-2730
lines changed

24 files changed

+3035
-2730
lines changed

SequenceAnalysis/pipeline_code/sequence_tools_install.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,13 @@ then
282282
rm -Rf DISCVRSeq*
283283
rm -Rf ${LKTOOLS_DIR}/DISCVRSeq.jar
284284

285-
wget $WGET_OPTS https://github.com/BimberLab/DISCVRSeq/releases/download/1.29/DISCVRSeq-1.29.jar
286-
cp DISCVRSeq-1.29.jar ${LKTOOLS_DIR}/DISCVRSeq.jar
285+
curl -s https://api.github.com/repos/BimberLab/DISCVRSeq/releases/latest \
286+
| grep 'browser_download_url.*jar' \
287+
| cut -d : -f 2,3 \
288+
| tr -d \" \
289+
| wget -O DISCVRseq.jar -qi -
290+
291+
cp DISCVRSeq.jar ${LKTOOLS_DIR}/DISCVRSeq.jar
287292
fi
288293

289294

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
247247
bodyStyle: 'padding-top: 10px;padding-left: 5px;',
248248
items: [{
249249
xtype: 'labkey-combo',
250-
width: 450,
250+
width: 600,
251251
fieldLabel: 'Select Run',
252252
editable: true,
253253
forceSelection: true,
@@ -268,11 +268,14 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
268268
afterrender: function (field) {
269269
Ext4.defer(field.focus, 200, field);
270270
}
271-
}
271+
},
272+
labelWidth: 200
272273
},{
273274
xtype: 'checkbox',
274275
itemId: 'useReadsetContainer',
275-
fieldLabel: 'Submit Jobs to Same Folder/Workbook as Readset'
276+
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.',
277+
fieldLabel: 'Submit Jobs to Same Folder/Workbook as Readset',
278+
labelWidth: 200
276279
}]
277280
}],
278281
buttons: [{
@@ -305,6 +308,12 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
305308
}
306309

307310
win.sequencePanel.applySavedValues(json);
311+
312+
var submitJobToReadsetContainer = win.sequencePanel.down('[name="submitJobToReadsetContainer"]');
313+
if (submitJobToReadsetContainer) {
314+
submitJobToReadsetContainer.setValue(useReadsetContainer);
315+
}
316+
308317
win.close();
309318
}
310319
},{
@@ -366,7 +375,7 @@ Ext4.define('SequenceAnalysis.panel.BaseSequencePanel', {
366375
}, this);
367376

368377
// For top-level properties:
369-
Ext4.Array.forEach(['submissionType', 'useOutputFileContainer', 'submitJobToReadsetContainer'], function(val) {
378+
Ext4.Array.forEach(['submissionType', 'useOutputFileContainer'], function(val) {
370379
if (values[val]) {
371380
var field = this.down('[name="' + val + '"]');
372381
if (field) {

0 commit comments

Comments
 (0)