Skip to content

Commit

Permalink
biom-convert wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
KateSakharova committed Mar 11, 2020
1 parent 56650be commit 92d91b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions tools/RNA_prediction/biom-convert/biom-convert.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ hints:
# version: [ "2.1.6" ]
#

baseCommand: [ "biom-convert.sh" ]

inputs:
biom:
Expand Down Expand Up @@ -62,8 +63,6 @@ inputs:
inputBinding:
prefix: --header-key

baseCommand: [ "biom", "convert" ]

arguments:
- valueFrom: |
${ var ext = "";
Expand Down
7 changes: 7 additions & 0 deletions tools/RNA_prediction/biom-convert/biom-convert.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# Biom convert wrapper - because Toil doesn't set the locale variables LC_ALL and LANG
export LC_ALL="en_US.UTF-8"
export LANG="en_US.UTF-8"

biom convert "$@"

0 comments on commit 92d91b3

Please sign in to comment.