Skip to content

Commit

Permalink
ensure zcat and bzcat are also installed
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Feb 11, 2024
1 parent 5fd51ac commit 6828b09
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/star/star_align/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ functionality:
doi: 10.1093/bioinformatics/bts635
license: MIT
requirements:
commands: [ STAR, python, ps ]
__merge__: [., argument_groups.yaml]
# manually taking care of the main input files
commands: [ STAR, python, ps, zcat, bzcat ]
# manually taking care of the main input and output arguments
argument_groups:
- name: Inputs
arguments:
Expand Down Expand Up @@ -75,6 +74,8 @@ functionality:
description: The output file containing the splice junctions.
direction: output
example: splice_junctions.tsv
# other arguments are defined in a separate file
__merge__: argument_groups.yaml
resources:
- type: python_script
path: script.py
Expand All @@ -89,12 +90,13 @@ platforms:
- type: apt
packages:
- procps
- gzip
- bzip2
# setup derived from https://github.com/alexdobin/STAR/blob/master/extras/docker/Dockerfile
- type: docker
env:
- STAR_VERSION 2.7.11b
- PACKAGES gcc g++ make wget zlib1g-dev unzip xxd
- type: docker
run: |
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
Expand Down

0 comments on commit 6828b09

Please sign in to comment.