Build pipeline: viash-hub.biobox.main-tb4cv
Source commit: 7158daa5f6
Source message: Fix bases2fastq component, update to latest practices (#190)
* wip updates
* refactor component
* assume bases2fastq follows semver
* fix version command
* add entry to changelog
* move to minor changes
17 lines
272 B
Bash
17 lines
272 B
Bash
#!/bin/bash
|
|
|
|
## VIASH START
|
|
## VIASH END
|
|
|
|
set -eo pipefail
|
|
|
|
# unset flags
|
|
[[ "$par_strand" == "false" ]] && unset par_strand
|
|
|
|
# Execute bedtools cluster
|
|
bedtools cluster \
|
|
-i "$par_input" \
|
|
${par_distance:+-d "$par_distance"} \
|
|
${par_strand:+-s} \
|
|
> "$par_output"
|