You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SequenceAnalysis/resources/queries/sequenceanalysis/sequence_readsets/Assigned to Run Lacking Data.qview.xml
if (unalteredInputs != null && unalteredInputs.contains(output))
456
462
{
457
463
job.getLogger().debug("\tThis input was unaltered during normalization and a copy already exists in the analysis folder so the original will be discarded");
job.getLogger().info("Output exists with same timestamp, but with smaller file size. This probably indicates a truncated/failed copy. Deleting this file.");
478
+
output.delete();
479
+
}
480
+
else
481
+
{
482
+
thrownewPipelineJobException("A file with the expected output name already exists: " + output.getPath());
483
+
}
466
484
}
467
485
}
468
486
469
-
FileUtils.moveFile(input, output);
487
+
if (!alreadyMoved)
488
+
{
489
+
FileUtils.moveFile(input, output);
490
+
}
470
491
if (!output.exists())
471
492
{
472
493
thrownewPipelineJobException("Unable to move file: " + input.getPath());
0 commit comments