Skip to content

Commit d114fd1

Browse files
committed
Bugfix for liftover scatter/gather
1 parent 3da91fa commit d114fd1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/window/LiftoverWindow.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,15 @@ Ext4.define('SequenceAnalysis.window.LiftoverWindow', {
179179
params[field.name] = field.getValue();
180180
}, this);
181181

182+
var actionName = 'runSequenceHandler';
183+
if (params.scatterGatherMethod && params.scatterGatherMethod !== 'none') {
184+
params.scatterGather = true;
185+
actionName = 'runVariantProcessing';
186+
}
187+
182188
Ext4.Msg.wait('Saving...');
183189
LABKEY.Ajax.request({
184-
url: LABKEY.ActionURL.buildURL('sequenceanalysis', 'runSequenceHandler', this.containerPath),
190+
url: LABKEY.ActionURL.buildURL('sequenceanalysis', actionName, this.containerPath),
185191
jsonData: {
186192
handlerClass: 'org.labkey.sequenceanalysis.analysis.LiftoverHandler',
187193
outputFileIds: this.outputFileIds,

0 commit comments

Comments
 (0)