Files
biobox/src/bedtools/bedtools_cluster/script.sh
CI 04a5851ff8 Build branch biobox/main with version main to biobox on branch main (7158daa)
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
2025-09-01 11:04:56 +00:00

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"