Skip to content

Commit

Permalink
Merge branch 'viash-hub:main' into samtools_collate
Browse files Browse the repository at this point in the history
  • Loading branch information
emmarousseau authored May 13, 2024
2 parents 2688797 + fe8ffc2 commit 5e63569
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
5 changes: 4 additions & 1 deletion _viash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ links:
issue_tracker: https://github.com/viash-hub/biobase/issues
repository: https://github.com/viash-hub/biobase

viash_version: 0.9.0-RC2
viash_version: 0.9.0-RC2

config_mods: |
.requirements.commands := ['ps']
2 changes: 1 addition & 1 deletion src/falco/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ engines:
image: debian:trixie-slim
setup:
- type: apt
packages: [wget, build-essential, g++, zlib1g-dev]
packages: [wget, build-essential, g++, zlib1g-dev, procps]
- type: docker
run: |
wget https://github.com/smithlabcode/falco/releases/download/v1.2.2/falco-1.2.2.tar.gz -O /tmp/falco.tar.gz && \
Expand Down
6 changes: 6 additions & 0 deletions src/multiqc/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,12 @@ argument_groups:
type: boolean_true
description: |
Disable coloured log output.
- name: "--cl_config"
type: string
required: false
description: |
YAML formatted string that allows to customize MultiQC behaviour like input file detection.
example: "qualimap_config: { general_stats_coverage: [20,40,200] }"

- name: "Output format"
arguments:
Expand Down
3 changes: 2 additions & 1 deletion src/multiqc/script.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# disable flags
[[ "$par_ignore_symlinks" == "false" ]] && unset ignore_symlinks
[[ "$par_ignore_symlinks" == "false" ]] && unset par_ignore_symlinks
[[ "$par_dirs" == "false" ]] && unset par_dirs
[[ "$par_full_names" == "false" ]] && unset par_full_names
[[ "$par_fn_as_s_name" == "false" ]] && unset par_fn_as_s_name
Expand Down Expand Up @@ -99,6 +99,7 @@ multiqc \
${include_modules} \
${par_include_modules:+--include-modules "$par_include_modules"} \
${par_data_format:+--data-format "$par_data_format"} \
${par_cl_config:+--cl-config "$par_cl_config"} \
${par_zip_data_dir:+--zip-data-dir} \
${par_pdf:+--pdf} \
${par_interactive:+--interactive} \
Expand Down

0 comments on commit 5e63569

Please sign in to comment.