fix bwa-mem.cwl docker repo
authorJoshua C. Randall <jcrandall@alum.mit.edu>
Thu, 21 Dec 2017 14:54:13 +0000 (14:54 +0000)
committerJoshua C. Randall <jcrandall@alum.mit.edu>
Thu, 21 Dec 2017 16:41:50 +0000 (16:41 +0000)
Change from missing `biodckr/bwa` repo to minimal bwa docker image `lh3lh3/bwa`
The new docker image has `bwa` set as entrypoint, so also change `baseCommand` from `[bwa, mem]` to `[mem]`
Fixes 11621

Arvados-DCO-1.1-Signed-off-by: Joshua C. Randall <jcrandall@alum.mit.edu>

doc/user/cwl/bwa-mem/bwa-mem.cwl

index b5c9f82a1a5f79970a97e92d91fce7de9268430c..20019712645902dbd1962b86a48bb8e59643c7b9 100755 (executable)
@@ -8,9 +8,9 @@ class: CommandLineTool
 
 hints:
   DockerRequirement:
-    dockerPull: biodckr/bwa
+    dockerPull: lh3lh3/bwa
 
-baseCommand: [bwa, mem]
+baseCommand: [mem]
 
 arguments:
   - {prefix: "-t", valueFrom: $(runtime.cores)}