Skip to content

Commit 93bcb7b

Browse files
committed
Bugfix to plink filtering
1 parent cc91241 commit 93bcb7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/PlinkPcaStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public void init(PipelineJob job, SequenceAnalysisJobSupport support, List<Seque
205205
{
206206
boolean splitByApplication = getProvider().getParameterByName("splitByApplication").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx(), Boolean.class, true);
207207
List<String> allowableApplications = null;
208-
String allowableApplicationsRaw = StringUtils.trimToNull(getProvider().getParameterByName("splitByApplication").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx()));
208+
String allowableApplicationsRaw = StringUtils.trimToNull(getProvider().getParameterByName("allowableApplications").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx()));
209209
if (allowableApplicationsRaw != null)
210210
{
211211
allowableApplications = Arrays.asList(allowableApplicationsRaw.split(";"));

0 commit comments

Comments
 (0)