Skip to content

Commit 4e5cb43

Browse files
committed
Update liftover default
1 parent 8007471 commit 4e5cb43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Ext4.define('SequenceAnalysis.window.LiftoverWindow', {
120120
}, {
121121
xtype: 'checkbox',
122122
itemId: 'doNotRetainUnmapped',
123-
checked: false,
123+
checked: true,
124124
fieldLabel: 'Do Not Retain Unmapped'
125125
}].concat(SequenceAnalysis.window.OutputHandlerWindow.getCfgForToolParameters(this.toolParameters)).concat([{
126126
xtype: 'sequenceanalysis-variantscattergatherpanel',

SequenceAnalysis/src/org/labkey/sequenceanalysis/analysis/LiftoverHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
180180

181181
boolean dropGenotypes = params.optBoolean("dropGenotypes", false);
182182
boolean useBcfTools = params.optBoolean("useBcfTools", false);
183-
boolean doNotRetainUnmapped = params.optBoolean("doNotRetainUnmapped", false);
183+
boolean doNotRetainUnmapped = params.optBoolean("doNotRetainUnmapped", true);
184184
if (!doNotRetainUnmapped && !useBcfTools)
185185
{
186186
ctx.getLogger().debug("Picard LiftoverVcf requires an output file for rejected sites, so setting doNotRetainUnmapped to true");

0 commit comments

Comments
 (0)