We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e591183 commit 1ea5d84Copy full SHA for 1ea5d84
SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/GenotypeGVCFsWrapper.java
@@ -226,7 +226,11 @@ else if (f.isDirectory() && doneFile.exists())
226
{
227
ctx.getLogger().info("Files will be marked for deletion after this step");
228
toDelete.add(movedFile);
229
- toDelete.add(movedIdx);
+ if (movedIdx != null)
230
+ {
231
+ toDelete.add(movedIdx);
232
+ }
233
+
234
if (doneFile.exists())
235
236
toDelete.add(doneFile);
0 commit comments