Build branch main with version main (5f6516e)

Build pipeline: viash-hub.biobox.main-v9whr

Source commit: 5f6516e9c0

Source message: Bump viash version (#172)

* bump viash version

* fix agat requirements
This commit is contained in:
CI
2025-03-06 09:35:27 +00:00
parent 6f8d68b9cc
commit a518d2ead8
343 changed files with 40275 additions and 18530 deletions

View File

@@ -114,6 +114,9 @@ test_resources:
is_executable: true
info: null
status: "enabled"
scope:
image: "public"
target: "public"
requirements:
commands:
- "ps"
@@ -221,16 +224,16 @@ build_info:
engine: "docker|native"
output: "target/executable/bedtools/bedtools_sort"
executable: "target/executable/bedtools/bedtools_sort/bedtools_sort"
viash_version: "0.9.0"
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
git_tag: "v0.2.0-27-g952ff08"
viash_version: "0.9.2"
git_commit: "5f6516e9c0d95c84f3d4159a67d3de19d3ae1fde"
git_remote: "https://github.com/viash-hub/biobox"
git_tag: "v0.2.0-30-g5f6516e"
package_config:
name: "biobox"
version: "main"
description: "A collection of bioinformatics tools for working with sequence data.\n"
info: null
viash_version: "0.9.0"
viash_version: "0.9.2"
source: "src"
target: "target"
config_mods:

View File

@@ -2,7 +2,7 @@
# bedtools_sort main
#
# This wrapper script is auto-generated by viash 0.9.0 and is thus a derivative
# This wrapper script is auto-generated by viash 0.9.2 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
# Intuitive.
#
@@ -172,59 +172,6 @@ VIASH_META_CONFIG="$VIASH_META_RESOURCES_DIR/.config.vsh.yaml"
VIASH_META_TEMP_DIR="$VIASH_TEMP"
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_sort main"
echo ""
echo "Sorts a feature file (bed/gff/vcf) by chromosome and other criteria."
echo ""
echo "Inputs:"
echo " -i, --input"
echo " type: file, required parameter, file must exist"
echo " Input file (bed/gff/vcf) to be sorted."
echo ""
echo "Outputs:"
echo " -o, --output"
echo " type: file, output, file must exist"
echo " Output sorted file (bed/gff/vcf) to be written."
echo ""
echo "Options:"
echo " --sizeA"
echo " type: boolean_true"
echo " Sort by feature size in ascending order."
echo ""
echo " --sizeD"
echo " type: boolean_true"
echo " Sort by feature size in descending order."
echo ""
echo " --chrThenSizeA"
echo " type: boolean_true"
echo " Sort by chrom (asc), then feature size (asc)."
echo ""
echo " --chrThenSizeD"
echo " type: boolean_true"
echo " Sort by chrom (asc), then feature size (desc)."
echo ""
echo " --chrThenScoreA"
echo " type: boolean_true"
echo " Sort by chrom (asc), then score (asc)."
echo ""
echo " --chrThenScoreD"
echo " type: boolean_true"
echo " Sort by chrom (asc), then score (desc)."
echo ""
echo " -g, --genome"
echo " type: file, file must exist"
echo " Sort according to the chromosomes declared in \"genome.txt\""
echo ""
echo " --faidx"
echo " type: file, file must exist"
echo " Sort according to the chromosomes declared in \"names.txt\""
echo ""
echo " --header"
echo " type: boolean_true"
echo " Print the header from the A file prior to results."
}
# initialise variables
VIASH_MODE='run'
@@ -509,9 +456,9 @@ RUN echo "bedtools: \"$(bedtools --version | sed -n 's/^bedtools //p')\"" > /var
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_sort"
LABEL org.opencontainers.image.created="2024-12-03T10:34:03Z"
LABEL org.opencontainers.image.created="2025-03-06T09:19:43Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
LABEL org.opencontainers.image.revision="5f6516e9c0d95c84f3d4159a67d3de19d3ae1fde"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER
@@ -626,6 +573,85 @@ fi
# initialise docker variables
VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_sort main"
echo ""
echo "Sorts a feature file (bed/gff/vcf) by chromosome and other criteria."
echo ""
echo "Inputs:"
echo " -i, --input"
echo " type: file, required parameter, file must exist"
echo " Input file (bed/gff/vcf) to be sorted."
echo ""
echo "Outputs:"
echo " -o, --output"
echo " type: file, output, file must exist"
echo " Output sorted file (bed/gff/vcf) to be written."
echo ""
echo "Options:"
echo " --sizeA"
echo " type: boolean_true"
echo " Sort by feature size in ascending order."
echo ""
echo " --sizeD"
echo " type: boolean_true"
echo " Sort by feature size in descending order."
echo ""
echo " --chrThenSizeA"
echo " type: boolean_true"
echo " Sort by chrom (asc), then feature size (asc)."
echo ""
echo " --chrThenSizeD"
echo " type: boolean_true"
echo " Sort by chrom (asc), then feature size (desc)."
echo ""
echo " --chrThenScoreA"
echo " type: boolean_true"
echo " Sort by chrom (asc), then score (asc)."
echo ""
echo " --chrThenScoreD"
echo " type: boolean_true"
echo " Sort by chrom (asc), then score (desc)."
echo ""
echo " -g, --genome"
echo " type: file, file must exist"
echo " Sort according to the chromosomes declared in \"genome.txt\""
echo ""
echo " --faidx"
echo " type: file, file must exist"
echo " Sort according to the chromosomes declared in \"names.txt\""
echo ""
echo " --header"
echo " type: boolean_true"
echo " Print the header from the A file prior to results."
echo ""
echo "Viash built in Computational Requirements:"
echo " ---cpus=INT"
echo " Number of CPUs to use"
echo " ---memory=STRING"
echo " Amount of memory to use. Examples: 4GB, 3MiB."
echo ""
echo "Viash built in Docker:"
echo " ---setup=STRATEGY"
echo " Setup the docker container. Options are: alwaysbuild, alwayscachedbuild, ifneedbebuild, ifneedbecachedbuild, alwayspull, alwayspullelsebuild, alwayspullelsecachedbuild, ifneedbepull, ifneedbepullelsebuild, ifneedbepullelsecachedbuild, push, pushifnotpresent, donothing."
echo " Default: ifneedbepullelsecachedbuild"
echo " ---dockerfile"
echo " Print the dockerfile to stdout."
echo " ---docker_run_args=ARG"
echo " Provide runtime arguments to Docker. See the documentation on \`docker run\` for more information."
echo " ---docker_image_id"
echo " Print the docker image id to stdout."
echo " ---debug"
echo " Enter the docker container for debugging purposes."
echo ""
echo "Viash built in Engines:"
echo " ---engine=ENGINE_ID"
echo " Specify the engine to use. Options are: docker, native."
echo " Default: docker"
}
# initialise array
VIASH_POSITIONAL_ARGS=''