Skip to content

Commit 92d91b3

Browse files
committed
biom-convert wrapper
1 parent 56650be commit 92d91b3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

tools/RNA_prediction/biom-convert/biom-convert.cwl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ hints:
2020
# version: [ "2.1.6" ]
2121
#
2222

23+
baseCommand: [ "biom-convert.sh" ]
2324

2425
inputs:
2526
biom:
@@ -62,8 +63,6 @@ inputs:
6263
inputBinding:
6364
prefix: --header-key
6465

65-
baseCommand: [ "biom", "convert" ]
66-
6766
arguments:
6867
- valueFrom: |
6968
${ var ext = "";
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# Biom convert wrapper - because Toil doesn't set the locale variables LC_ALL and LANG
4+
export LC_ALL="en_US.UTF-8"
5+
export LANG="en_US.UTF-8"
6+
7+
biom convert "$@"

0 commit comments

Comments
 (0)