Skip to content

Commit 861ebad

Browse files
committed
Fix NPE
1 parent 7cd9343 commit 861ebad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/LofreqAnalysis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ public Output performAnalysisPerSampleRemote(Readset rs, File inputBam, Referenc
423423

424424
boolean runPindel = getProvider().getParameterByName("runPindel").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx(), Boolean.class, false);
425425

426-
List<VariantContext> pindelConsensusVariants = null;
426+
List<VariantContext> pindelConsensusVariants = new ArrayList<>();
427427
int totalPindelConsensusVariants = 0;
428428
if (runPindel)
429429
{

0 commit comments

Comments
 (0)