Skip to content

Commit

Permalink
minimal script
Browse files Browse the repository at this point in the history
  • Loading branch information
dorien-er committed Feb 13, 2024
1 parent ee70c2c commit b013d47
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/multiqc/script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

if [[ -n "$par_input" ]]; then
IFS="," read -ra inputs <<< $par_input
unset IFS
input=()
for path in "${inputs[@]}"; do
input+=("$path")
done
fi


multiqc \
"${input[@]}"

0 comments on commit b013d47

Please sign in to comment.