Skip to content

Commit 00885c7

Browse files
committed
Fix docker args in GLNexusHandler
1 parent 2407a00 commit 00885c7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/analysis/GLNexusHandler.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,20 +235,18 @@ public void execute(List<File> inputGvcfs, File outputVcf, PipelineOutputTracker
235235
}
236236
writer.println("\t-u $UID \\");
237237
writer.println("\t-e USERID=$UID \\");
238-
writer.println("\t--entrypoint /bin/bash \\");
239-
writer.println("\t-w /work \\");
238+
240239
Integer maxRam = SequencePipelineService.get().getMaxRam();
241240
if (maxRam != null)
242241
{
243242
writer.println("\t--memory='" + maxRam + "g' \\");
244243
}
245244
writer.println("\tquay.io/mlin/glnexus:" + binVersion + " \\");
246245

247-
writer.println("\tglnexus_cli" + " \\");
248246
writer.println("\t--config DeepVariant" + " \\");
249247

250248
gvcfsLocal.forEach(f -> {
251-
writer.println("\t-i gvcf=/work/" + f.getPath() + " \\");
249+
writer.println("\t-i gvcf=/work/" + f.getName() + " \\");
252250
});
253251

254252
Integer maxThreads = SequencePipelineService.get().getMaxThreads(getLogger());

0 commit comments

Comments
 (0)