Skip to content

Commit e803df7

Browse files
authored
Bugfix to split VCF jobs (#130)
* Fix MCC jest tests * Bugfix to split VCF jobs
1 parent 927c94b commit e803df7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mGAP/src/org/labkey/mgap/pipeline/GenerateMgapTracksStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ public void performAdditionalMergeTasks(SequenceOutputHandler.JobContext ctx, Pi
430430
{
431431
job.getLogger().debug("Merging track: " + trackName);
432432
List<File> toConcat = orderedJobDirs.stream().map(dirName -> {
433-
File f = getOutputVcf(trackName, new File(ctx.getWorkingDirectory(), dirName));
433+
File f = getOutputVcf(trackName, new File(ctx.getSourceDirectory(), dirName));
434434
if (!f.exists())
435435
{
436436
throw new IllegalStateException("Missing file: " + f.getPath());

0 commit comments

Comments
 (0)