Build branch biobox/v0.4.x with version v0.4.2 to biobox on branch v0.4 (02b470d)

Build pipeline: viash-hub.biobox.v0.4.2-mgw2k

Source commit: 02b470d967

Source message: Bump version to v0.4.2
This commit is contained in:
CI
2025-11-20 09:09:55 +00:00
parent 1281cd8dac
commit 3a2855a4f5
667 changed files with 24570 additions and 3162 deletions

View File

@@ -1,3 +1,20 @@
# biobox 0.4.2
## NEW FUNCTIONALITY
* `ensembl_vep`: Added Ensembl Variant Effect Predictor (VEP) support for variant annotation and filtering (PR #205):
* `ensembl_vep/vep_install`: Install VEP cache data, FASTA files, and plugins for variant effect prediction.
* `ensembl_vep/filter_vep`: Filter and post-process VEP output by consequence type, phenotype, clinical significance, and more.
* `ensembl_vep/vep`: Determine the effect of variants on genes, transcripts, and protein sequences with comprehensive annotation options.
# MINOR CHANGES
* `bases2fastq`: Bump from `2.2.1` to `2.3.0` (PR #207)
* `cutadapt`: Add output compression support (PR #206)
# biobox 0.4.1
## MINOR CHANGES

View File

@@ -7,7 +7,7 @@ license <- paste0(package$links$repository, "/blob/main/LICENSE")
contributing <- paste0(package$links$repository, "/blob/main/CONTRIBUTING.md")
pkg <- package$name
ver <- if (!is.null(package$version)) package$version else "v0.4.1"
ver <- if (!is.null(package$version)) package$version else "v0.4.2"
comp <- "bowtie2_align"
# Count components

View File

@@ -1,5 +1,5 @@
name: biobox
version: v0.4.1
version: v0.4.2
summary: |
A curated collection of high-quality, standalone bioinformatics components built with [Viash](https://viash.io).
description: |

View File

@@ -1,6 +1,6 @@
manifest {
name = "biobox"
version = "v0.4.1"
version = "v0.4.2"
defaultBranch = "main"
nextflowVersion = "!>=20.12.1-edge"
}

View File

@@ -186,6 +186,10 @@ argument_groups:
multiple: true
description: |
Cycle mask for cyto fastq generation. This flag can be specified multiple times.
- name: "--group_well_label"
type: boolean_true
description: |
Merge FASTQ according to well label defined in run manifest.
- name: "--panel"
type: file
description: |
@@ -218,7 +222,7 @@ test_resources:
engines:
- type: docker
image: elembio/bases2fastq:2.2.1
image: elembio/bases2fastq:2.3.0
setup:
- type: docker
run: |

View File

@@ -1,5 +1,5 @@
```
docker run --rm docker.io/elembio/bases2fastq:2.2 bases2fastq -h
docker run --rm docker.io/elembio/bases2fastq:2.3 bases2fastq -h
```
Usage: bases2fastq [OPTIONS] ANALYSIS_DIRECTORY OUTPUT_DIRECTORY
@@ -45,6 +45,7 @@ optional arguments:
cyto-fastq optional arguments:
--batch BATCH Restrict cyto-fastq generation to batch(es) that match comma delimited list (e.g. --batch B01,B02,B03).
--cyto-fastq-mask MASK Cycle mask for cyto fastq generation. This flag can be specified multiple times.
--group-well-label Merge FASTQ according to well label defined in run manifest (default false)
--panel PANEL Local or remote path to panel JSON
--per-target-fastq Create per-target fastq for each cell assignment target site in each DISS batch according to FastqMasks in TargetCellAssignmentManifest.
--tca-manifest PATH Location of TargetCellAssignmentManifest to use instead of default csv found in analysis directory

View File

@@ -21,6 +21,7 @@ unset_if_false=(
par_skip_multi_qc
par_force_index_orientation
par_per_target_fastq
par_group_well_label
)
for par in ${unset_if_false[@]}; do
@@ -53,6 +54,7 @@ args=(
${par_no_error_on_invalid:+--no-error-on-invalid}
${par_no_projects:+--no-projects}
${par_split_lanes:+--split-lanes}
${par_group_well_label:+--group-well-label}
${par_force_index_orientation:+--force-index-orientation}
${par_skip_qc_report:+--skip-qc-report}
${par_skip_multi_qc:+--skip-multi-qc}

View File

@@ -432,8 +432,9 @@ argument_groups:
type: file
description: |
Glob pattern for matching the expected output files.
Should include `$output_dir`.
example: "fastq/*_001.fast[a,q]"
Should include `$output_dir`. Supports compression formats (.gz, .xz, .bz2)
which will be auto-detected from the file extension.
example: "fastq/*_001.fastq.gz"
direction: output
required: true
must_exist: true

View File

@@ -186,14 +186,25 @@ debug $optional_output_args
debug
# Output arguments
# We write the output to a directory rather than
# individual files.
# Extract extension from output pattern, with fallback to default
###########################################################
if [[ -z $par_fasta ]]; then
ext="fastq"
echo ">> Determining output file extension from pattern: $par_output"
# Extract the extension from the filename in the output pattern
filename=$(basename "$par_output")
if [[ "$filename" == *.* ]]; then
# Extract everything after the first dot (handles compression like .fastq.gz)
ext="${filename#*.}"
echo " Detected extension from pattern: .$ext"
else
ext="fasta"
# Fallback when no extension is specified in the pattern
if [[ -z "$par_fasta" ]]; then
ext="fastq"
else
ext="fasta"
fi
echo " No extension in pattern, using default: .$ext"
fi
demultiplex_mode="$par_demultiplex_mode"

View File

@@ -254,6 +254,149 @@ assert_file_contains "out_test3/unknown_R2_001.fastq" "@read2"
cd ..
echo
#############################################
mkdir test_gzip_compression_se
cd test_gzip_compression_se
echo "#############################################"
echo "> Test gzip compression with single-end data"
cat > example.fastq <<'EOF'
@read1
ACGTACGTACGTAAAAA
+
IIIIIIIIIIIIIIIII
@read2
ACGTACGTACGTCCCCC
+
IIIIIIIIIIIIIIIII
@read3
ACGTACGTACGTGGGGG
+
IIIIIIIIIIIIIIIII
EOF
"$meta_executable" \
--report minimal \
--output "out_test_gz/*.fastq.gz" \
--adapter AAAAA \
--input example.fastq \
--json
echo ">> Checking gzipped output"
assert_file_exists "report.json"
assert_file_exists "out_test_gz/trimmed_001.fastq.gz"
echo ">> Check if gzipped output is not empty"
assert_file_not_empty "report.json"
assert_file_not_empty "out_test_gz/trimmed_001.fastq.gz"
echo ">> Check if file is actually gzipped"
file out_test_gz/trimmed_001.fastq.gz | grep -q "gzip compressed" || { echo "File is not gzipped" && exit 1; }
echo ">> Check contents by decompressing"
zcat out_test_gz/trimmed_001.fastq.gz | head -1 | grep -q "@read1" || { echo "Decompressed file does not contain expected content" && exit 1; }
cd ..
echo
#############################################
mkdir test_gzip_compression_pe
cd test_gzip_compression_pe
echo "#############################################"
echo "> Test gzip compression with paired-end data"
cat > example_R1.fastq <<'EOF'
@read1
ACGTACGTACGTAAAAA
+
IIIIIIIIIIIIIIIII
@read2
ACGTACGTACGTCCCCC
+
IIIIIIIIIIIIIIIII
EOF
cat > example_R2.fastq <<'EOF'
@read1
ACGTACGTACGTGGGGG
+
IIIIIIIIIIIIIIIII
@read2
ACGTACGTACGTTTTTT
+
IIIIIIIIIIIIIIIII
EOF
"$meta_executable" \
--report minimal \
--output "out_test_gz_pe/*.fastq.gz" \
--adapter AAAAA \
--adapter_r2 GGGGG \
--input example_R1.fastq \
--input_r2 example_R2.fastq \
--json
echo ">> Checking gzipped paired-end output"
assert_file_exists "report.json"
assert_file_exists "out_test_gz_pe/trimmed_R1_001.fastq.gz"
assert_file_exists "out_test_gz_pe/trimmed_R2_001.fastq.gz"
echo ">> Check if gzipped output is not empty"
assert_file_not_empty "report.json"
assert_file_not_empty "out_test_gz_pe/trimmed_R1_001.fastq.gz"
assert_file_not_empty "out_test_gz_pe/trimmed_R2_001.fastq.gz"
echo ">> Check if files are actually gzipped"
file out_test_gz_pe/trimmed_R1_001.fastq.gz | grep -q "gzip compressed" || { echo "R1 file is not gzipped" && exit 1; }
file out_test_gz_pe/trimmed_R2_001.fastq.gz | grep -q "gzip compressed" || { echo "R2 file is not gzipped" && exit 1; }
cd ..
echo
#############################################
mkdir test_bz2_compression
cd test_bz2_compression
echo "#############################################"
echo "> Test bzip2 compression"
cat > example.fastq <<'EOF'
@read1
ACGTACGTACGTAAAAA
+
IIIIIIIIIIIIIIIII
@read2
ACGTACGTACGTCCCCC
+
IIIIIIIIIIIIIIIII
EOF
"$meta_executable" \
--report minimal \
--output "out_test_bz2/*.fastq.bz2" \
--adapter AAAAA \
--input example.fastq \
--json
echo ">> Checking bzip2 output"
assert_file_exists "report.json"
assert_file_exists "out_test_bz2/trimmed_001.fastq.bz2"
echo ">> Check if bzip2 output is not empty"
assert_file_not_empty "report.json"
assert_file_not_empty "out_test_bz2/trimmed_001.fastq.bz2"
echo ">> Check if file is actually bzip2 compressed"
file out_test_bz2/trimmed_001.fastq.bz2 | grep -q "bzip2 compressed" || { echo "File is not bzip2 compressed" && exit 1; }
echo ">> Check contents by decompressing"
bzcat out_test_bz2/trimmed_001.fastq.bz2 | head -1 | grep -q "@read1" || { echo "Decompressed file does not contain expected content" && exit 1; }
cd ..
echo
#############################################
echo "#############################################"

View File

@@ -0,0 +1,139 @@
name: filter_vep
namespace: ensembl_vep
description: |
Filter and post-process VEP output by consequence type, phenotype, clinical significance, and more.
This script filters VEP output files based on various criteria including:
- Consequence types and predicted effects
- Clinical significance and phenotype associations
- Frequency thresholds from population databases
- Quality metrics and variant properties
See the [Filter VEP documentation](http://www.ensembl.org/info/docs/tools/vep/script/vep_filter.html) for details.
keywords: [variant effect prediction, filtering, annotation, genomics, post-processing]
links:
homepage: https://www.ensembl.org/info/docs/tools/vep/index.html
documentation: http://www.ensembl.org/info/docs/tools/vep/script/vep_filter.html
repository: https://github.com/Ensembl/ensembl-vep
license: Apache-2.0
requirements:
commands: [filter_vep]
authors:
- __merge__: /src/_authors/robrecht_cannoodt.yaml
roles: [author, maintainer]
argument_groups:
- name: "Inputs"
arguments:
- name: --input_file
alternatives: [-i]
type: file
description: |
Input VEP result file to filter.
**Format:** VEP tab-delimited or JSON format output
**Compression:** Supports gzip compressed files (.gz)
required: true
example: "vep_results.txt"
- name: --format
type: string
description: |
Specify input file format.
choices: ["tab", "json"]
default: "tab"
required: false
- name: "Outputs"
arguments:
- name: --output_file
alternatives: [-o]
type: file
direction: output
description: |
Output filtered results to file.
**Format:** Same format as input file
**Compression:** Automatically gzip if filename ends with .gz
required: true
example: "filtered_results.txt"
- name: "Filtering Options"
arguments:
- name: --filter
type: string
multiple: true
description: |
Add filter condition. Multiple filters are joined with AND.
**Syntax:** field operator value
**Operators:** eq, ne, gt, gte, lt, lte, match, in, is, exists
**Examples:**
- "Consequence eq missense_variant"
- "MAX_AF lt 0.01"
- "IMPACT match HIGH"
required: false
example: ["Consequence eq missense_variant", "MAX_AF lt 0.01"]
- name: --only_matched
type: boolean_true
description: |
In VCF files, only output matched variants.
**Default behavior:** Output all variants, flag matches
**With flag:** Only output variants passing filters
- name: "Annotation Options"
arguments:
- name: --ontology
type: boolean_true
description: |
Use Sequence Ontology (SO) to match consequence terms.
**Enables:** Hierarchical matching of consequence types
**Example:** "transcript_variant" matches "missense_variant"
- name: --count
alternatives: [-c]
type: boolean_true
description: |
Print only a count of matched variants.
**Output:** Single number instead of filtered variants
**Use case:** Quick summary of filter results
- name: "Advanced Options"
arguments:
- name: --force_valid_header
type: boolean_true
description: |
Force output of valid VCF header when using --only_matched.
**Use case:** Ensure downstream tools can parse filtered VCF
- name: --test
type: integer
description: |
Quick test on first n variants.
required: false
example: 100
resources:
- type: bash_script
path: script.sh
test_resources:
- type: bash_script
path: test.sh
- path: /src/_utils/test_helpers.sh
engines:
- type: docker
image: quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1
setup:
- type: docker
run:
- "filter_vep --help | head -1 | sed 's/.*filter_vep.*/filter_vep: 115.2/' > /var/software_versions.txt"
runners:
- type: executable
- type: nextflow

View File

@@ -0,0 +1,57 @@
```bash
docker run --rm quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1 filter_vep --help
```
#------------#
# filter_vep #
#------------#
http://www.ensembl.org/info/docs/tools/vep/script/vep_filter.html
Usage:
./filter_vep [arguments]
--help -h Print usage message and exit
--input_file [file] -i Specify the input file (i.e. the VEP results file).
If no input file is specified, the script will
attempt to read from STDIN. Input may be gzipped - to
force the script to read a file as gzipped, use --gz
--format [vcf|tab] Specify input file format (tab for any tab-delimited
format, including default VEP output format)
--output_file [file] -o Specify the output file to write to. If no output file
is specified, the script will write to STDOUT
--force_overwrite Force the script to overwrite the output file if it
already exists
--filter [filters] -f Add filter. Multiple --filter flags may be used, and
are treated as logical ANDs, i.e. all filters must
pass for a line to be printed
--list -l List allowed fields from the input file
--count -c Print only a count of matched lines
--only_matched In VCF files, the CSQ field that contains the
consequence data will often contain more than one
"block" of consequence data, where each block
corresponds to a variant/feature overlap. Using
--only_matched will remove blocks that do not pass the
filters. By default, the script prints out the entire
VCF line if any of the blocks pass the filters.
--vcf_info_field [key] With VCF input files, by default filter_vep expects to
find VEP annotations encoded in the CSQ INFO key; VEP
itself can be configured to write to a different key
(with the equivalent --vcf_info_field flag). Use this
flag to change the INFO key VEP expects to decode.
--ontology -y Use Sequence Ontology to match consequence terms. Use
with operator "is" to match against all child terms of
your value.
e.g. "Consequence is coding_sequence_variant" will
match missense_variant, synonymous_variant etc.
Requires database connection; defaults to connecting
to ensembldb.ensembl.org. Use --host, --port, --user,
--password, --version as per ./vep to change
connection parameters.

View File

@@ -0,0 +1,40 @@
#!/bin/bash
## VIASH START
## VIASH END
set -eo pipefail
# Unset false boolean parameters (biobox standard)
[[ "$par_only_matched" == "false" ]] && unset par_only_matched
[[ "$par_ontology" == "false" ]] && unset par_ontology
[[ "$par_count" == "false" ]] && unset par_count
[[ "$par_force_valid_header" == "false" ]] && unset par_force_valid_header
# Handle multiple filter values (semicolon-separated from Viash)
if [[ -n "$par_filter" ]]; then
IFS=';' read -ra filter_array <<< "$par_filter"
fi
# Build command array (preferred pattern)
cmd_args=(
filter_vep
--input_file "$par_input_file"
--output_file "$par_output_file"
${par_format:+--format "$par_format"}
${par_only_matched:+--only_matched}
${par_ontology:+--ontology}
${par_count:+--count}
${par_force_valid_header:+--force_valid_header}
${par_test:+--test "$par_test"}
)
# Handle multiple filter conditions
if [[ -n "$par_filter" ]]; then
for filter_condition in "${filter_array[@]}"; do
cmd_args+=(--filter "$filter_condition")
done
fi
# Execute command
"${cmd_args[@]}"

View File

@@ -0,0 +1,86 @@
#!/bin/bash
set -eo pipefail
## VIASH START
## VIASH END
# Always source centralized helpers
source "$meta_resources_dir/test_helpers.sh"
# Initialize test environment
setup_test_env
log "Starting tests for $meta_name"
# Create test VEP output file
create_test_vep_output() {
cat > "$1" << 'EOF'
#Uploaded_variation Location Allele Gene Feature Feature_type Consequence cDNA_position CDS_position Protein_position Amino_acids Codons Existing_variation IMPACT DISTANCE STRAND FLAGS SYMBOL SYMBOL_SOURCE HGNC_ID BIOTYPE CANONICAL CCDS ENSP SWISSPROT TREMBL UNIPARC HGVSc HGVSp HGVSg SIFT PolyPhen DOMAINS HGVS_OFFSET GMAF AFR_MAF AMR_MAF EAS_MAF EUR_MAF SAS_MAF AA_MAF EA_MAF CLIN_SIG SOMATIC PHENO PUBMED MOTIF_NAME MOTIF_POS HIGH_INF_POS MOTIF_SCORE_CHANGE
rs699 1:230845794 A ENSG00000228272 ENST00000445118 Transcript intron_variant - - - - - rs699 MODIFIER - -1 - - - - processed_transcript - - - - - - 1:g.230845794G>A - - - - - - 0.2028 0.2661 0.1705 0.1369 0.2476 0.1901 - - - - - - - - - -
rs12345 2:47641559 T ENSG00000116198 ENST00000233242 Transcript missense_variant 1043 1043 348 P/L Ccc/Ctc rs12345 MODERATE - 1 - MSH2 HGNC HGNC:7325 protein_coding YES CCDS2396.1 ENSP00000233242 P43246 - UPI00001659CC ENST00000233242.8:c.1043C>T ENSP00000233242.3:p.Pro348Leu 2:g.47641559C>T deleterious(0.01) probably_damaging(0.997) hmmpanther:PTHR10748:SF21,hmmpanther:PTHR10748,Pfam_domain:PF00488,PIRSF_domain:PIRSF001455 - - - - - - - - - pathogenic - - - - - - -
EOF
}
# Test 1: List available fields functionality
# Test 1: Basic filtering with consequence
log "Starting TEST 1: Basic consequence filtering"
create_test_vep_output "$meta_temp_dir/test_input.txt"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input.txt" \
--output_file "$meta_temp_dir/filtered_output1.txt" \
--filter "Consequence eq missense_variant" > "$meta_temp_dir/filter_test.txt" 2>&1 || true
check_file_exists "$meta_temp_dir/filter_test.txt" "filter test output"
check_file_exists "$meta_temp_dir/filtered_output1.txt" "filtered output file"
# Check that missense variant line is present
if grep -q "missense_variant" "$meta_temp_dir/filtered_output1.txt"; then
log "✅ Missense variant found in filtered output"
else
log "⚠️ Missense variant not found in filtered output (may be expected depending on filter logic)"
fi
log "✅ TEST 1 completed successfully"
# Test 2: Format parameter with filtering
log "Starting TEST 2: Format parameter test"
create_test_vep_output "$meta_temp_dir/test_input2.txt"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input2.txt" \
--output_file "$meta_temp_dir/format_output.txt" \
--format tab \
--filter "IMPACT eq MODERATE" > "$meta_temp_dir/format_test.txt" 2>&1 || true
check_file_exists "$meta_temp_dir/format_test.txt" "format test output"
check_file_exists "$meta_temp_dir/format_output.txt" "format output file"
log "✅ TEST 2 completed successfully"
# Test 3: Count mode
log "Starting TEST 3: Count mode filtering"
create_test_vep_output "$meta_temp_dir/test_input3.txt"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input3.txt" \
--filter "IMPACT eq MODERATE" \
--count > "$meta_temp_dir/count_output.txt" 2>&1 || true
check_file_exists "$meta_temp_dir/count_output.txt" "count output"
check_file_not_empty "$meta_temp_dir/count_output.txt" "count output"
log "✅ TEST 3 completed successfully"
# Test 4: Multiple filters
log "Starting TEST 4: Multiple filter conditions"
create_test_vep_output "$meta_temp_dir/test_input4.txt"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input4.txt" \
--output_file "$meta_temp_dir/multi_filtered.txt" \
--filter "Consequence eq missense_variant" \
--filter "IMPACT eq MODERATE" 2>&1 || true
check_file_exists "$meta_temp_dir/multi_filtered.txt" "multi-filter output"
log "✅ TEST 4 completed successfully"
# Always end with summary
print_test_summary "All filter_vep tests completed successfully"

View File

@@ -0,0 +1,278 @@
name: vep
namespace: ensembl_vep
description: |
Variant Effect Predictor (VEP) determines the effect of variants on genes, transcripts, and protein sequences.
VEP annotates variants with:
- Consequence types (missense, nonsense, splice site, etc.)
- Gene and transcript information
- Protein effect predictions (SIFT, PolyPhen)
- Population frequencies and clinical significance
- Conservation scores and regulatory features
See the [VEP documentation](http://www.ensembl.org/info/docs/tools/vep/script/index.html) for comprehensive usage.
keywords: [variant effect prediction, annotation, genomics, consequence, missense]
links:
homepage: https://www.ensembl.org/info/docs/tools/vep/index.html
documentation: http://www.ensembl.org/info/docs/tools/vep/script/index.html
repository: https://github.com/Ensembl/ensembl-vep
license: Apache-2.0
requirements:
commands: [vep]
authors:
- __merge__: /src/_authors/robrecht_cannoodt.yaml
roles: [author, maintainer]
argument_groups:
- name: "Inputs"
arguments:
- name: --input_file
alternatives: [-i]
type: file
description: |
Input variant file for annotation.
**Formats:** VCF, VEP, variant_identifier, HGVS, ID, region, SPDI
**Compression:** Supports gzip (.gz) and bgzip compressed files
required: true
example: "variants.vcf"
- name: --format
type: string
description: |
Input file format.
choices: ["vcf", "variant_identifier", "hgvs", "id", "region", "spdi", "vep"]
default: "vcf"
required: false
- name: "Outputs"
arguments:
- name: --output_file
alternatives: [-o]
type: file
direction: output
description: |
Output annotated variants to file.
**Compression:** Automatically compress if filename ends with .gz
required: true
example: "annotated_variants.txt"
- name: --vcf
type: boolean_true
description: |
Output results in VCF format.
**Default:** Tab-delimited text format
**VCF mode:** Adds INFO field with VEP annotations
- name: "Reference Data"
arguments:
- name: --species
type: string
description: |
Species for annotation.
default: "homo_sapiens"
required: false
example: "homo_sapiens"
- name: --assembly
type: string
description: |
Genome assembly version.
required: false
example: "GRCh38"
- name: --cache
type: boolean_true
description: |
Use cache files for annotation (recommended).
**Performance:** Much faster than database queries
**Location:** Specify with --dir or use default ~/.vep/
- name: --dir
type: file
description: |
Directory containing cache files.
default: "/root/.vep/"
required: false
example: "/data/vep_cache"
- name: --cache_version
type: integer
description: |
Use specific cache version.
required: false
example: 115
- name: --offline
type: boolean_true
description: |
Enable offline mode (no database connections).
**Requires:** Cache files and FASTA files
**Use case:** Isolated environments or reproducible runs
- name: "Annotation Options"
arguments:
- name: --everything
type: boolean_true
description: |
Shortcut to switch on commonly used options.
**Includes:** --sift, --polyphen, --ccds, --hgvs, --symbol,
--numbers, --domains, --regulatory, --canonical, --protein,
--biotype, --uniprot, --tsl, --appris, --gene_phenotype,
--af, --af_1kg, --af_esp, --af_gnomad, --max_af, --pubmed,
--variant_class, --mane
- name: --canonical
type: boolean_true
description: |
Add canonical transcript flag to output.
**Canonical:** Transcript selected as representative for each gene
- name: --ccds
type: boolean_true
description: |
Add CCDS transcript identifiers.
- name: --protein
type: boolean_true
description: |
Add Ensembl protein identifiers.
- name: --symbol
type: boolean_true
description: |
Add gene symbol (e.g., HGNC).
- name: --hgvs
type: boolean_true
description: |
Add HGVS nomenclature for variants.
- name: --sift
type: string
description: |
Add SIFT prediction and/or score.
choices: ["p", "s", "b"]
required: false
- name: --polyphen
type: string
description: |
Add PolyPhen prediction and/or score.
choices: ["p", "s", "b"]
required: false
- name: "Frequency Options"
arguments:
- name: --af
type: boolean_true
description: |
Add global allele frequency from 1000 Genomes.
- name: --af_1kg
type: boolean_true
description: |
Add continental allele frequencies from 1000 Genomes.
- name: --af_gnomad
type: boolean_true
description: |
Add allele frequencies from gnomAD exomes collections.
- name: --max_af
type: boolean_true
description: |
Add maximum observed allele frequency across populations.
- name: "Filtering Options"
arguments:
- name: --pick
type: boolean_true
description: |
Pick one consequence annotation per variant.
**Selection:** Most severe consequence per gene
**Output:** Single annotation line per variant
- name: --pick_allele
type: boolean_true
description: |
Pick one consequence annotation per allele.
- name: --flag_pick
type: boolean_true
description: |
Flag picked consequence with PICK=1.
- name: --per_gene
type: boolean_true
description: |
Use one consequence annotation per gene.
- name: --pick_order
type: string
description: |
Customize annotation selection criteria order.
required: false
example: "canonical,appris,tsl,biotype,ccds,rank,length"
- name: "Output Filtering"
arguments:
- name: --most_severe
type: boolean_true
description: |
Output only most severe consequence per variant.
- name: --summary
type: boolean_true
description: |
Output only summary of consequences for each variant.
- name: --filter_common
type: boolean_true
description: |
Shortcut to exclude common variants (frequency > 0.01).
- name: "Advanced Options"
arguments:
- name: --buffer_size
type: integer
description: |
Number of variants to read at once.
default: 5000
required: false
- name: --no_check_variants_order
type: boolean_true
description: |
Permit variants not ordered by position.
- name: --allow_non_variant
type: boolean_true
description: |
Allow non-variant VCF lines through analysis.
resources:
- type: bash_script
path: script.sh
test_resources:
- type: bash_script
path: test.sh
- path: /src/_utils/test_helpers.sh
engines:
- type: docker
image: quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1
setup:
- type: docker
run:
- "vep --help | head -1 | sed 's/.*Variant Effect Predictor.*/vep: 115.2/' > /var/software_versions.txt"
runners:
- type: executable
- type: nextflow

View File

@@ -0,0 +1,30 @@
```bash
docker run --rm quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1 vep --help
```
#----------------------------------#
# ENSEMBL VARIANT EFFECT PREDICTOR #
#----------------------------------#
http://www.ensembl.org/info/docs/tools/vep/script/index.html
Usage:
./vep [--cache|--offline|--database] [arguments]
Basic options
=============
--help Display this message and quit
-i | --input_file Input file
-o | --output_file Output file
--force_overwrite Force overwriting of output file
--species [species] Species to use [default: "human"]
--everything Shortcut switch to turn on commonly used options. See web
documentation for details [default: off]
--fork [num_forks] Use forking to improve script runtime
For full option documentation see:
http://www.ensembl.org/info/docs/tools/vep/script/vep_options.html

View File

@@ -0,0 +1,72 @@
#!/bin/bash
## VIASH START
## VIASH END
set -eo pipefail
# Unset false boolean parameters (biobox standard)
[[ "$par_vcf" == "false" ]] && unset par_vcf
[[ "$par_cache" == "false" ]] && unset par_cache
[[ "$par_offline" == "false" ]] && unset par_offline
[[ "$par_everything" == "false" ]] && unset par_everything
[[ "$par_canonical" == "false" ]] && unset par_canonical
[[ "$par_ccds" == "false" ]] && unset par_ccds
[[ "$par_protein" == "false" ]] && unset par_protein
[[ "$par_symbol" == "false" ]] && unset par_symbol
[[ "$par_hgvs" == "false" ]] && unset par_hgvs
[[ "$par_af" == "false" ]] && unset par_af
[[ "$par_af_1kg" == "false" ]] && unset par_af_1kg
[[ "$par_af_gnomad" == "false" ]] && unset par_af_gnomad
[[ "$par_max_af" == "false" ]] && unset par_max_af
[[ "$par_pick" == "false" ]] && unset par_pick
[[ "$par_pick_allele" == "false" ]] && unset par_pick_allele
[[ "$par_flag_pick" == "false" ]] && unset par_flag_pick
[[ "$par_per_gene" == "false" ]] && unset par_per_gene
[[ "$par_most_severe" == "false" ]] && unset par_most_severe
[[ "$par_summary" == "false" ]] && unset par_summary
[[ "$par_filter_common" == "false" ]] && unset par_filter_common
[[ "$par_no_check_variants_order" == "false" ]] && unset par_no_check_variants_order
[[ "$par_allow_non_variant" == "false" ]] && unset par_allow_non_variant
# Build command array (preferred pattern)
cmd_args=(
vep
--input_file "$par_input_file"
--output_file "$par_output_file"
${par_format:+--format "$par_format"}
${par_vcf:+--vcf}
${par_species:+--species "$par_species"}
${par_assembly:+--assembly "$par_assembly"}
${par_cache:+--cache}
${par_dir:+--dir "$par_dir"}
${par_cache_version:+--cache_version "$par_cache_version"}
${par_offline:+--offline}
${par_everything:+--everything}
${par_canonical:+--canonical}
${par_ccds:+--ccds}
${par_protein:+--protein}
${par_symbol:+--symbol}
${par_hgvs:+--hgvs}
${par_sift:+--sift "$par_sift"}
${par_polyphen:+--polyphen "$par_polyphen"}
${par_af:+--af}
${par_af_1kg:+--af_1kg}
${par_af_gnomad:+--af_gnomad}
${par_max_af:+--max_af}
${par_pick:+--pick}
${par_pick_allele:+--pick_allele}
${par_flag_pick:+--flag_pick}
${par_per_gene:+--per_gene}
${par_pick_order:+--pick_order "$par_pick_order"}
${par_most_severe:+--most_severe}
${par_summary:+--summary}
${par_filter_common:+--filter_common}
${par_buffer_size:+--buffer_size "$par_buffer_size"}
${par_no_check_variants_order:+--no_check_variants_order}
${par_allow_non_variant:+--allow_non_variant}
${meta_cpus:+--fork "$meta_cpus"}
)
# Execute command
"${cmd_args[@]}"

113
src/ensembl_vep/vep/test.sh Normal file
View File

@@ -0,0 +1,113 @@
#!/bin/bash
set -eo pipefail
## VIASH START
## VIASH END
# Always source centralized helpers
source "$meta_resources_dir/test_helpers.sh"
# Initialize test environment
setup_test_env
log "Starting tests for $meta_name"
# Create test VCF file
create_test_vcf() {
cat > "$1" << 'EOF'
##fileformat=VCFv4.2
##contig=<ID=1,length=249250621>
##contig=<ID=2,length=242193529>
#CHROM POS ID REF ALT QUAL FILTER INFO
1 230845794 rs699 G A . PASS .
2 47641559 rs12345 C T . PASS .
EOF
}
# Create test variant identifier file
create_test_variant_id() {
cat > "$1" << 'EOF'
1 230845794 230845794 G/A +
2 47641559 47641559 C/T +
EOF
}
# Test 2: VCF input format test (offline mode without cache)
log "Starting TEST 2: VCF input format validation"
create_test_vcf "$meta_temp_dir/test_input.vcf"
# Test parameter parsing without requiring cache (should fail gracefully)
# Using C. elegans for consistency with installation tests
"$meta_executable" \
--input_file "$meta_temp_dir/test_input.vcf" \
--output_file "$meta_temp_dir/vep_output1.txt" \
--format vcf \
--species caenorhabditis_elegans \
--assembly WBcel235 \
--offline 2>&1 | head -20 > "$meta_temp_dir/vcf_test.txt" || true
check_file_exists "$meta_temp_dir/vcf_test.txt" "VCF test output"
check_file_not_empty "$meta_temp_dir/vcf_test.txt" "VCF test output"
log "✅ TEST 1 completed successfully"
# Test 2: Variant identifier format test
log "Starting TEST 2: Variant identifier format"
create_test_variant_id "$meta_temp_dir/test_variants.txt"
"$meta_executable" \
--input_file "$meta_temp_dir/test_variants.txt" \
--output_file "$meta_temp_dir/vep_output2.txt" \
--format variant_identifier \
--offline 2>&1 | head -20 > "$meta_temp_dir/variant_test.txt" || true
check_file_exists "$meta_temp_dir/variant_test.txt" "variant identifier test output"
check_file_not_empty "$meta_temp_dir/variant_test.txt" "variant identifier test output"
log "✅ TEST 2 completed successfully"
# Test 3: VCF output format
log "Starting TEST 3: VCF output format test"
create_test_vcf "$meta_temp_dir/test_input2.vcf"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input2.vcf" \
--output_file "$meta_temp_dir/vep_output.vcf" \
--vcf \
--offline 2>&1 | head -20 > "$meta_temp_dir/vcf_output_test.txt" || true
check_file_exists "$meta_temp_dir/vcf_output_test.txt" "VCF output test"
log "✅ TEST 3 completed successfully"
# Test 4: Multiple annotation options
log "Starting TEST 4: Annotation options test"
create_test_vcf "$meta_temp_dir/test_input3.vcf"
"$meta_executable" \
--input_file "$meta_temp_dir/test_input3.vcf" \
--output_file "$meta_temp_dir/annotated_output.txt" \
--canonical \
--symbol \
--hgvs \
--pick \
--offline 2>&1 | head -20 > "$meta_temp_dir/annotation_test.txt" || true
check_file_exists "$meta_temp_dir/annotation_test.txt" "annotation test output"
check_file_not_empty "$meta_temp_dir/annotation_test.txt" "annotation test output"
log "✅ TEST 4 completed successfully"
# Test 5: Buffer size parameter test
log "Starting TEST 5: Buffer size parameter test"
create_test_vcf "$meta_temp_dir/test_input4.vcf"
# Test with buffer size parameter
"$meta_executable" \
--input_file "$meta_temp_dir/test_input4.vcf" \
--output_file "$meta_temp_dir/buffer_output.txt" \
--buffer_size 1000 \
--offline 2>&1 | head -20 > "$meta_temp_dir/buffer_test.txt" || true
check_file_exists "$meta_temp_dir/buffer_test.txt" "buffer test output"
log "✅ TEST 5 completed successfully"
# Always end with summary
print_test_summary "All VEP tests completed successfully"

View File

@@ -0,0 +1,161 @@
name: vep_install
namespace: ensembl_vep
description: |
Install Ensembl VEP cache data, FASTA files, and plugins for variant effect prediction.
The VEP installer script downloads and installs reference data required by VEP, including:
- Cache files containing transcript and regulatory data
- FASTA files for reference sequences
- VEP plugins for extended functionality
See the [VEP installation documentation](http://www.ensembl.org/info/docs/variation/vep/vep_script.html#installer) for details.
keywords: [variant effect prediction, annotation, genomics, installation, cache]
links:
homepage: https://www.ensembl.org/info/docs/tools/vep/index.html
documentation: http://www.ensembl.org/info/docs/variation/vep/vep_script.html#installer
repository: https://github.com/Ensembl/ensembl-vep
license: Apache-2.0
requirements:
commands: [vep_install]
authors:
- __merge__: /src/_authors/robrecht_cannoodt.yaml
roles: [author, maintainer]
argument_groups:
- name: "Outputs"
arguments:
- name: --destdir
type: file
direction: output
description: |
Set destination directory for API install.
default: "./"
required: false
example: "/opt/vep"
- name: --cachedir
type: file
direction: output
description: |
Set destination directory for cache files.
default: "/root/.vep/"
required: false
example: "/data/vep_cache"
- name: --pluginsdir
type: file
direction: output
description: |
Set destination directory for VEP plugins files.
default: "/root/.vep/Plugins/"
required: false
example: "/data/vep_plugins"
- name: "Basic Options"
arguments:
- name: --cache_version
type: integer
description: |
Set data (cache, FASTA) version to install.
default: 115
required: false
example: 115
- name: "Installation Options"
arguments:
- name: --auto
type: string
description: |
Run installer without user prompts. Use combinations of:
- "a" (API + Faidx/htslib)
- "l" (Faidx/htslib only)
- "c" (cache)
- "f" (FASTA)
- "p" (plugins)
Example: "ac" for API and cache.
required: false
example: "ac"
- name: --species
type: string
description: |
Comma-separated list of species to install when using --auto.
required: false
example: "homo_sapiens,mus_musculus"
multiple: true
- name: --assembly
type: string
description: |
Assembly name to use if more than one during --auto.
required: false
example: "GRCh38"
- name: "Plugin Options"
arguments:
- name: --plugins
type: string
description: |
Comma-separated list of plugins to install when using --auto.
Use "list" to list all plugins or "all" to install all available plugins.
required: false
example: "CADD,dbNSFP"
multiple: true
- name: "Advanced Options"
arguments:
- name: --no_update
type: boolean_true
description: |
Do not check for updates to ensembl-vep or API.
- name: --no_plugins
type: boolean_true
description: |
Skip plugin installation.
- name: --no_htslib
type: boolean_true
description: |
Do not attempt to install Faidx/htslib.
- name: --no_bioperl
type: boolean_true
description: |
Do not install BioPerl.
- name: --prefer_bin
type: boolean_true
description: |
Use this if the installer fails with out of memory errors.
- name: --convert
type: boolean_true
description: |
Convert downloaded caches to use tabix for retrieving co-located variants (requires tabix).
- name: --quiet
type: boolean_true
description: |
Do not write any status output when using --auto.
resources:
- type: bash_script
path: script.sh
test_resources:
- type: bash_script
path: test.sh
- path: /src/_utils/test_helpers.sh
engines:
- type: docker
image: quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1
setup:
- type: docker
run: |
vep_install --help | head -1 | sed 's/.*INSTALLER.*/vep_install: 115.2/' > /var/software_versions.txt
runners:
- type: executable
- type: nextflow

View File

@@ -0,0 +1,54 @@
```bash
docker run --rm quay.io/biocontainers/ensembl-vep:115.2--pl5321h2a3209d_1 vep_install --help
```
#---------------#
# VEP INSTALLER #
#---------------#
http://www.ensembl.org/info/docs/variation/vep/vep_script.html#installer
Usage:
perl INSTALL.pl [arguments]
Options
=======
-h | --help Display this message and quit
-d | --DESTDIR Set destination directory for API install (default = './')
--CACHE_VERSION Set data (cache, FASTA) version to install (default = 115)
-c | --CACHEDIR Set destination directory for cache files (default = '/root/.vep/')
-a | --AUTO Run installer without user prompts. Use "a" (API + Faidx/htslib),
"l" (Faidx/htslib only), "c" (cache), "f" (FASTA), "p" (plugins) to specify
parts to install e.g. -a ac for API and cache
-n | --NO_UPDATE Do not check for updates to ensembl-vep or API
-s | --SPECIES Comma-separated list of species to install when using --AUTO
-y | --ASSEMBLY Assembly name to use if more than one during --AUTO
--NO_PLUGINS Skip plugin installation
-g | --PLUGINS Comma-separated list of plugins to install when using --AUTO; you can also
use "list" to list all plugins and "all" to install all available plugins
-r | --PLUGINSDIR Set destination directory for VEP plugins files (default = '/root/.vep/Plugins/')
-q | --QUIET Do not write any status output when using --AUTO
-p | --PREFER_BIN Use this if the installer fails with out of memory errors
-l | --NO_HTSLIB Do not attempt to install Faidx/htslib
--NO_BIOPERL Do not install BioPerl
-t | --CONVERT Convert downloaded caches to use tabix for retrieving
co-located variants (requires tabix)
-u | --CACHEURL Override default cache URL; this may be a local directory or
a remote (e.g. FTP) address.
-f | --FASTAURL Override default FASTA URL; this may be a local directory or
a remote (e.g. FTP) address. The FASTA URL/directory must have
gzipped FASTA files under the following structure:
[species]/[dna]/
--USE_HTTPS_PROTO Download cache and FASTA file using HTTPs protocol instead of FTP.
Useful for networks where FTP port is blocked by firewall.
--GITHUBTOKEN Set token to use for authentication when querying GitHub API. Authenticated
user have increased rate-limit. NOTE: use token with read-only access.

View File

@@ -0,0 +1,49 @@
#!/bin/bash
## VIASH START
## VIASH END
set -eo pipefail
# Unset false boolean parameters (biobox standard)
[[ "$par_no_update" == "false" ]] && unset par_no_update
[[ "$par_no_plugins" == "false" ]] && unset par_no_plugins
[[ "$par_no_htslib" == "false" ]] && unset par_no_htslib
[[ "$par_no_bioperl" == "false" ]] && unset par_no_bioperl
[[ "$par_prefer_bin" == "false" ]] && unset par_prefer_bin
[[ "$par_convert" == "false" ]] && unset par_convert
[[ "$par_quiet" == "false" ]] && unset par_quiet
# Handle multiple values (semicolon-separated from Viash)
if [[ -n "$par_species" ]]; then
# Convert semicolon-separated to comma-separated for VEP
par_species=$(echo "$par_species" | tr ';' ',')
fi
if [[ -n "$par_plugins" ]]; then
# Convert semicolon-separated to comma-separated for VEP
par_plugins=$(echo "$par_plugins" | tr ';' ',')
fi
# Build command array (preferred pattern)
cmd_args=(
vep_install
${par_destdir:+--destdir "$par_destdir"}
${par_cachedir:+--cachedir "$par_cachedir"}
${par_cache_version:+--cache_version "$par_cache_version"}
${par_auto:+--auto "$par_auto"}
${par_species:+--species "$par_species"}
${par_assembly:+--assembly "$par_assembly"}
${par_plugins:+--plugins "$par_plugins"}
${par_pluginsdir:+--pluginsdir "$par_pluginsdir"}
${par_no_update:+--no_update}
${par_no_plugins:+--no_plugins}
${par_no_htslib:+--no_htslib}
${par_no_bioperl:+--no_bioperl}
${par_prefer_bin:+--prefer_bin}
${par_convert:+--convert}
${par_quiet:+--quiet}
)
# Execute command
"${cmd_args[@]}"

View File

@@ -0,0 +1,84 @@
#!/bin/bash
set -eo pipefail
## VIASH START
## VIASH END
# Always source centralized helpers
source "$meta_resources_dir/test_helpers.sh"
# Initialize test environment
setup_test_env
log "Starting tests for $meta_name"
# Test 1: Test directory creation and basic parameter passing
log "Starting TEST 1: Directory creation and parameter validation"
mkdir -p "$meta_temp_dir/test_install"
mkdir -p "$meta_temp_dir/test_cache"
mkdir -p "$meta_temp_dir/test_plugins"
# Test that directories are created and parameters are properly passed
# This will fail due to no internet/cache but should show proper parameter handling
"$meta_executable" \
--destdir "$meta_temp_dir/test_install" \
--cachedir "$meta_temp_dir/test_cache" \
--pluginsdir "$meta_temp_dir/test_plugins" \
--cache_version 115 \
--no_update \
--quiet 2>&1 | head -10 > "$meta_temp_dir/install_test.txt" || true
check_file_exists "$meta_temp_dir/install_test.txt" "installation test output"
check_dir_exists "$meta_temp_dir/test_install" "destination directory"
check_dir_exists "$meta_temp_dir/test_cache" "cache directory"
check_dir_exists "$meta_temp_dir/test_plugins" "plugins directory"
log "✅ TEST 1 completed successfully"
# Test 2: Test installation with small species (C. elegans for faster testing)
log "Starting TEST 2: Small species installation test"
mkdir -p "$meta_temp_dir/test_install"
mkdir -p "$meta_temp_dir/test_cache"
# Test that actual installation parameters work with C. elegans (much smaller than human)
# Using same parameters as nf-core modules for faster testing
"$meta_executable" \
--destdir "$meta_temp_dir/test_install" \
--cachedir "$meta_temp_dir/test_cache" \
--cache_version 115 \
--auto "c" \
--species "caenorhabditis_elegans" \
--assembly "WBcel235" \
--no_update \
--no_bioperl \
--no_htslib > "$meta_temp_dir/install_test.txt" 2>&1 || true
# Test 3: Multiple species parameter handling
log "Starting TEST 3: Multiple species parameter handling"
mkdir -p "$meta_temp_dir/multi_install"
"$meta_executable" \
--destdir "$meta_temp_dir/multi_install" \
--species "caenorhabditis_elegans;drosophila_melanogaster" \
--no_update \
--quiet 2>&1 | head -10 > "$meta_temp_dir/multi_test.txt" || true
check_file_exists "$meta_temp_dir/multi_test.txt" "multi-species test output"
log "✅ TEST 3 completed successfully"
# Test 4: Plugin parameter handling
log "Starting TEST 4: Plugin parameter handling"
mkdir -p "$meta_temp_dir/plugin_install"
"$meta_executable" \
--destdir "$meta_temp_dir/plugin_install" \
--plugins "CADD;dbNSFP" \
--no_plugins \
--no_update \
--quiet 2>&1 | head -10 > "$meta_temp_dir/plugin_test.txt" || true
check_file_exists "$meta_temp_dir/plugin_test.txt" "plugin test output"
log "✅ TEST 4 completed successfully"
# Always end with summary
print_test_summary "All vep_install tests completed successfully"

View File

@@ -1,6 +1,6 @@
name: "agat_convert_bed2gff"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -217,7 +217,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -234,11 +234,11 @@ build_info:
output: "target/executable/agat/agat_convert_bed2gff"
executable: "target/executable/agat/agat_convert_bed2gff/agat_convert_bed2gff"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -259,7 +259,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_bed2gff v0.4.1
# agat_convert_bed2gff v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_bed2gff"
LABEL org.opencontainers.image.created="2025-10-03T12:12:02Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_bed2gff v0.4.1"
echo "agat_convert_bed2gff v0.4.2"
echo ""
echo "The script takes a bed file as input, and will translate it in gff format. The"
echo "BED format is described here The script converts 0-based, half-open [start-1,"
@@ -680,7 +680,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_bed2gff v0.4.1"
echo "agat_convert_bed2gff v0.4.2"
exit
;;
--bed)
@@ -877,7 +877,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_bed2gff:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_bed2gff:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_embl2gff"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -207,7 +207,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -224,11 +224,11 @@ build_info:
output: "target/executable/agat/agat_convert_embl2gff"
executable: "target/executable/agat/agat_convert_embl2gff/agat_convert_embl2gff"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -249,7 +249,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_embl2gff v0.4.1
# agat_convert_embl2gff v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_embl2gff"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:54Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_embl2gff v0.4.1"
echo "agat_convert_embl2gff v0.4.2"
echo ""
echo "The script takes an EMBL file as input, and will translate it in gff format."
echo ""
@@ -670,7 +670,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_embl2gff v0.4.1"
echo "agat_convert_embl2gff v0.4.2"
exit
;;
--embl)
@@ -884,7 +884,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_embl2gff:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_embl2gff:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_genscan2gff"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -212,7 +212,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -229,11 +229,11 @@ build_info:
output: "target/executable/agat/agat_convert_genscan2gff"
executable: "target/executable/agat/agat_convert_genscan2gff/agat_convert_genscan2gff"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -254,7 +254,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_genscan2gff v0.4.1
# agat_convert_genscan2gff v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_genscan2gff"
LABEL org.opencontainers.image.created="2025-10-03T12:12:01Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:51Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_genscan2gff v0.4.1"
echo "agat_convert_genscan2gff v0.4.2"
echo ""
echo "The script takes a GENSCAN file as input, and will translate it in gff"
echo "format. The GENSCAN format is described"
@@ -679,7 +679,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_genscan2gff v0.4.1"
echo "agat_convert_genscan2gff v0.4.2"
exit
;;
--genscan)
@@ -877,7 +877,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_genscan2gff:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_genscan2gff:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_mfannot2gff"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -168,7 +168,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -185,11 +185,11 @@ build_info:
output: "target/executable/agat/agat_convert_mfannot2gff"
executable: "target/executable/agat/agat_convert_mfannot2gff/agat_convert_mfannot2gff"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -210,7 +210,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_mfannot2gff v0.4.1
# agat_convert_mfannot2gff v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_mfannot2gff"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_mfannot2gff v0.4.1"
echo "agat_convert_mfannot2gff v0.4.2"
echo ""
echo "Conversion utility for MFannot \"masterfile\" annotation produced by the"
echo "[MFannot pipeline](http://megasun.bch.umontreal.ca/RNAweasel/). Reports"
@@ -645,7 +645,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_mfannot2gff v0.4.1"
echo "agat_convert_mfannot2gff v0.4.2"
exit
;;
--mfannot)
@@ -799,7 +799,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_mfannot2gff:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_mfannot2gff:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_sp_gff2gtf"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -210,7 +210,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -227,11 +227,11 @@ build_info:
output: "target/executable/agat/agat_convert_sp_gff2gtf"
executable: "target/executable/agat/agat_convert_sp_gff2gtf/agat_convert_sp_gff2gtf"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -252,7 +252,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_sp_gff2gtf v0.4.1
# agat_convert_sp_gff2gtf v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_sp_gff2gtf"
LABEL org.opencontainers.image.created="2025-10-03T12:12:02Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:51Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_sp_gff2gtf v0.4.1"
echo "agat_convert_sp_gff2gtf v0.4.2"
echo ""
echo "The script aims to convert any GTF/GFF file into a proper GTF file. Full"
echo "information about the format can be found here:"
@@ -684,7 +684,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_sp_gff2gtf v0.4.1"
echo "agat_convert_sp_gff2gtf v0.4.2"
exit
;;
--gff)
@@ -855,7 +855,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gff2gtf:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gff2gtf:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_sp_gff2tsv"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -170,7 +170,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -187,11 +187,11 @@ build_info:
output: "target/executable/agat/agat_convert_sp_gff2tsv"
executable: "target/executable/agat/agat_convert_sp_gff2tsv/agat_convert_sp_gff2tsv"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -212,7 +212,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_sp_gff2tsv v0.4.1
# agat_convert_sp_gff2tsv v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_sp_gff2tsv"
LABEL org.opencontainers.image.created="2025-10-03T12:12:00Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:52Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_sp_gff2tsv v0.4.1"
echo "agat_convert_sp_gff2tsv v0.4.2"
echo ""
echo "The script aims to convert gtf/gff file into tabulated file. Attribute's"
echo "tags from the 9th column become column titles."
@@ -649,7 +649,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_sp_gff2tsv v0.4.1"
echo "agat_convert_sp_gff2tsv v0.4.2"
exit
;;
--gff)
@@ -803,7 +803,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gff2tsv:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gff2tsv:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_convert_sp_gxf2gxf"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -177,7 +177,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -194,11 +194,11 @@ build_info:
output: "target/executable/agat/agat_convert_sp_gxf2gxf"
executable: "target/executable/agat/agat_convert_sp_gxf2gxf/agat_convert_sp_gxf2gxf"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -219,7 +219,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_convert_sp_gxf2gxf v0.4.1
# agat_convert_sp_gxf2gxf v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_convert_sp_gxf2gxf"
LABEL org.opencontainers.image.created="2025-10-03T12:12:00Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_convert_sp_gxf2gxf v0.4.1"
echo "agat_convert_sp_gxf2gxf v0.4.2"
echo ""
echo "This script fixes and/or standardizes any GTF/GFF file into full sorted"
echo "GTF/GFF file. It AGAT parser removes duplicate features, fixes"
@@ -658,7 +658,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_convert_sp_gxf2gxf v0.4.1"
echo "agat_convert_sp_gxf2gxf v0.4.2"
exit
;;
--gxf)
@@ -812,7 +812,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gxf2gxf:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_convert_sp_gxf2gxf:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_sp_add_introns"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -168,7 +168,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -185,11 +185,11 @@ build_info:
output: "target/executable/agat/agat_sp_add_introns"
executable: "target/executable/agat/agat_sp_add_introns/agat_sp_add_introns"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -210,7 +210,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_sp_add_introns v0.4.1
# agat_sp_add_introns v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_sp_add_introns"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:54Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_sp_add_introns v0.4.1"
echo "agat_sp_add_introns v0.4.2"
echo ""
echo "Add intronic elements to a gtf/gff file without intron features."
echo ""
@@ -644,7 +644,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_sp_add_introns v0.4.1"
echo "agat_sp_add_introns v0.4.2"
exit
;;
--gff)
@@ -816,7 +816,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_add_introns:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_add_introns:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_sp_filter_feature_from_kill_list"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -218,7 +218,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -235,11 +235,11 @@ build_info:
output: "target/executable/agat/agat_sp_filter_feature_from_kill_list"
executable: "target/executable/agat/agat_sp_filter_feature_from_kill_list/agat_sp_filter_feature_from_kill_list"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -260,7 +260,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_sp_filter_feature_from_kill_list v0.4.1
# agat_sp_filter_feature_from_kill_list v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_sp_filter_feature_from_kill_list"
LABEL org.opencontainers.image.created="2025-10-03T12:12:01Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:52Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_sp_filter_feature_from_kill_list v0.4.1"
echo "agat_sp_filter_feature_from_kill_list v0.4.2"
echo ""
echo "Remove features based on a kill list. The default behaviour is to look at the"
echo "features's ID."
@@ -682,7 +682,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_sp_filter_feature_from_kill_list v0.4.1"
echo "agat_sp_filter_feature_from_kill_list v0.4.2"
exit
;;
--gff)
@@ -921,7 +921,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_filter_feature_from_kill_list:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_filter_feature_from_kill_list:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_sp_merge_annotations"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -166,7 +166,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -183,11 +183,11 @@ build_info:
output: "target/executable/agat/agat_sp_merge_annotations"
executable: "target/executable/agat/agat_sp_merge_annotations/agat_sp_merge_annotations"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -208,7 +208,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_sp_merge_annotations v0.4.1
# agat_sp_merge_annotations v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_sp_merge_annotations"
LABEL org.opencontainers.image.created="2025-10-03T12:12:00Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_sp_merge_annotations v0.4.1"
echo "agat_sp_merge_annotations v0.4.2"
echo ""
echo "Merge different gff annotation files into one. It uses the AGAT parser that"
echo "takes care of"
@@ -647,7 +647,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_sp_merge_annotations v0.4.1"
echo "agat_sp_merge_annotations v0.4.2"
exit
;;
--gff)
@@ -804,7 +804,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_merge_annotations:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_merge_annotations:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_sp_statistics"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -213,7 +213,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -230,11 +230,11 @@ build_info:
output: "target/executable/agat/agat_sp_statistics"
executable: "target/executable/agat/agat_sp_statistics/agat_sp_statistics"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -255,7 +255,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_sp_statistics v0.4.1
# agat_sp_statistics v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/.*v\.//; s/\s.*//' | sed 's/^/AGAT: /' > /var/softwa
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_sp_statistics"
LABEL org.opencontainers.image.created="2025-10-03T12:12:01Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:52Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_sp_statistics v0.4.1"
echo "agat_sp_statistics v0.4.2"
echo ""
echo "The script provides exhaustive statistics of a gft/gff file."
echo ""
@@ -672,7 +672,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_sp_statistics v0.4.1"
echo "agat_sp_statistics v0.4.2"
exit
;;
--gff)
@@ -868,7 +868,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_statistics:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sp_statistics:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "agat_sq_stat_basic"
namespace: "agat"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Leïla Paquay"
roles:
@@ -209,7 +209,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/agat:1.4.0--pl5321hdfd78af_0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -226,11 +226,11 @@ build_info:
output: "target/executable/agat/agat_sq_stat_basic"
executable: "target/executable/agat/agat_sq_stat_basic/agat_sq_stat_basic"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -251,7 +251,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# agat_sq_stat_basic v0.4.1
# agat_sq_stat_basic v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN agat --version | sed 's/AGAT\s\(.*\)/agat: "\1"/' > /var/software_versions.t
LABEL org.opencontainers.image.authors="Leïla Paquay"
LABEL org.opencontainers.image.description="Companion container for running component agat agat_sq_stat_basic"
LABEL org.opencontainers.image.created="2025-10-03T12:12:00Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:51Z"
LABEL org.opencontainers.image.source="https://github.com/NBISweden/AGAT"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "agat_sq_stat_basic v0.4.1"
echo "agat_sq_stat_basic v0.4.2"
echo ""
echo "The script aims to provide basic statistics of a gtf/gff file."
echo ""
@@ -672,7 +672,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "agat_sq_stat_basic v0.4.1"
echo "agat_sq_stat_basic v0.4.2"
exit
;;
--gff)
@@ -874,7 +874,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sq_stat_basic:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/agat/agat_sq_stat_basic:v0.4.2'
fi
# print dockerfile

View File

@@ -1,5 +1,5 @@
name: "arriba"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -711,7 +711,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/arriba:2.5.0--h87b9561_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -729,11 +729,11 @@ build_info:
output: "target/executable/arriba"
executable: "target/executable/arriba/arriba"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -754,7 +754,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# arriba v0.4.1
# arriba v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN arriba -h 2>&1 | head -5 | grep 'Version:' | sed 's/Version:\s\(.*\)/arriba:
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component arriba"
LABEL org.opencontainers.image.created="2025-10-03T12:12:07Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:56Z"
LABEL org.opencontainers.image.source="https://github.com/suhrig/arriba"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "arriba v0.4.1"
echo "arriba v0.4.2"
echo ""
echo "Arriba is a command-line tool for the detection of gene fusions from RNA-Seq"
echo "data. It was developed for the use in a clinical research setting. Therefore,"
@@ -949,7 +949,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "arriba v0.4.1"
echo "arriba v0.4.2"
exit
;;
--bam)
@@ -1675,7 +1675,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/arriba:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/arriba:v0.4.2'
fi
# print dockerfile

View File

@@ -1,5 +1,5 @@
name: "bases2fastq"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Dries Schaumont"
roles:
@@ -306,6 +306,11 @@ argument_groups:
direction: "input"
multiple: true
multiple_sep: ";"
- type: "boolean_true"
name: "--group_well_label"
description: "Merge FASTQ according to well label defined in run manifest.\n"
info: null
direction: "input"
- type: "file"
name: "--panel"
description: "Local or remote path to panel JSON\n"
@@ -432,9 +437,9 @@ runners:
engines:
- type: "docker"
id: "docker"
image: "elembio/bases2fastq:2.2.1"
image: "elembio/bases2fastq:2.3.0"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -452,11 +457,11 @@ build_info:
output: "target/executable/bases2fastq"
executable: "target/executable/bases2fastq/bases2fastq"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -477,7 +482,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bases2fastq v0.4.1
# bases2fastq v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -446,16 +446,16 @@ function ViashDockerfile {
if [[ "$engine_id" == "docker" ]]; then
cat << 'VIASHDOCKER'
FROM elembio/bases2fastq:2.2.1
FROM elembio/bases2fastq:2.3.0
ENTRYPOINT []
RUN bases2fastq --version 2>&1 | head -1 | sed 's/.*version \([0-9\\.]*\).*/bases2fastq: \1/' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Dries Schaumont"
LABEL org.opencontainers.image.description="Companion container for running component bases2fastq"
LABEL org.opencontainers.image.created="2025-10-03T12:12:03Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:58Z"
LABEL org.opencontainers.image.source="https://github.com/Illumina/bases2fastq"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bases2fastq v0.4.1"
echo "bases2fastq v0.4.2"
echo ""
echo "Bases2Fastq demultiplexes sequencing data generated by Element Biosciences"
echo "instruments and converts base calls into FASTQ files."
@@ -736,6 +736,10 @@ function ViashHelp {
echo " Cycle mask for cyto fastq generation. This flag can be specified"
echo " multiple times."
echo ""
echo " --group_well_label"
echo " type: boolean_true"
echo " Merge FASTQ according to well label defined in run manifest."
echo ""
echo " --panel"
echo " type: file, file must exist"
echo " Local or remote path to panel JSON"
@@ -797,7 +801,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bases2fastq v0.4.1"
echo "bases2fastq v0.4.2"
exit
;;
--analysis_directory)
@@ -1156,6 +1160,11 @@ while [[ $# -gt 0 ]]; do
fi
shift 1
;;
--group_well_label)
[ -n "$VIASH_PAR_GROUP_WELL_LABEL" ] && ViashError Bad arguments for option \'--group_well_label\': \'$VIASH_PAR_GROUP_WELL_LABEL\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_GROUP_WELL_LABEL=true
shift 1
;;
--panel)
[ -n "$VIASH_PAR_PANEL" ] && ViashError Bad arguments for option \'--panel\': \'$VIASH_PAR_PANEL\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_PANEL="$2"
@@ -1271,7 +1280,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bases2fastq:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bases2fastq:v0.4.2'
fi
# print dockerfile
@@ -1425,6 +1434,9 @@ fi
if [ -z ${VIASH_PAR_SKIP_MULTI_QC+x} ]; then
VIASH_PAR_SKIP_MULTI_QC="false"
fi
if [ -z ${VIASH_PAR_GROUP_WELL_LABEL+x} ]; then
VIASH_PAR_GROUP_WELL_LABEL="false"
fi
if [ -z ${VIASH_PAR_PER_TARGET_FASTQ+x} ]; then
VIASH_PAR_PER_TARGET_FASTQ="false"
fi
@@ -1574,6 +1586,12 @@ if [[ -n "$VIASH_PAR_SKIP_MULTI_QC" ]]; then
exit 1
fi
fi
if [[ -n "$VIASH_PAR_GROUP_WELL_LABEL" ]]; then
if ! [[ "$VIASH_PAR_GROUP_WELL_LABEL" =~ ^(true|True|TRUE|false|False|FALSE|yes|Yes|YES|no|No|NO)$ ]]; then
ViashError '--group_well_label' has to be a boolean_true. Use "--help" to get more information on the parameters.
exit 1
fi
fi
if [[ -n "$VIASH_PAR_PER_TARGET_FASTQ" ]]; then
if ! [[ "$VIASH_PAR_PER_TARGET_FASTQ" =~ ^(true|True|TRUE|false|False|FALSE|yes|Yes|YES|no|No|NO)$ ]]; then
ViashError '--per_target_fastq' has to be a boolean_true. Use "--help" to get more information on the parameters.
@@ -1824,6 +1842,7 @@ $( if [ ! -z ${VIASH_PAR_SKIP_MULTI_QC+x} ]; then echo "${VIASH_PAR_SKIP_MULTI_Q
$( if [ ! -z ${VIASH_PAR_SETTINGS+x} ]; then echo "${VIASH_PAR_SETTINGS}" | sed "s#'#'\"'\"'#g;s#.*#par_settings='&'#" ; else echo "# par_settings="; fi )
$( if [ ! -z ${VIASH_PAR_BATCH+x} ]; then echo "${VIASH_PAR_BATCH}" | sed "s#'#'\"'\"'#g;s#.*#par_batch='&'#" ; else echo "# par_batch="; fi )
$( if [ ! -z ${VIASH_PAR_CYTO_FASTQ_MASK+x} ]; then echo "${VIASH_PAR_CYTO_FASTQ_MASK}" | sed "s#'#'\"'\"'#g;s#.*#par_cyto_fastq_mask='&'#" ; else echo "# par_cyto_fastq_mask="; fi )
$( if [ ! -z ${VIASH_PAR_GROUP_WELL_LABEL+x} ]; then echo "${VIASH_PAR_GROUP_WELL_LABEL}" | sed "s#'#'\"'\"'#g;s#.*#par_group_well_label='&'#" ; else echo "# par_group_well_label="; fi )
$( if [ ! -z ${VIASH_PAR_PANEL+x} ]; then echo "${VIASH_PAR_PANEL}" | sed "s#'#'\"'\"'#g;s#.*#par_panel='&'#" ; else echo "# par_panel="; fi )
$( if [ ! -z ${VIASH_PAR_PER_TARGET_FASTQ+x} ]; then echo "${VIASH_PAR_PER_TARGET_FASTQ}" | sed "s#'#'\"'\"'#g;s#.*#par_per_target_fastq='&'#" ; else echo "# par_per_target_fastq="; fi )
$( if [ ! -z ${VIASH_PAR_TCA_MANIFEST+x} ]; then echo "${VIASH_PAR_TCA_MANIFEST}" | sed "s#'#'\"'\"'#g;s#.*#par_tca_manifest='&'#" ; else echo "# par_tca_manifest="; fi )
@@ -1866,6 +1885,7 @@ unset_if_false=(
par_skip_multi_qc
par_force_index_orientation
par_per_target_fastq
par_group_well_label
)
for par in \${unset_if_false[@]}; do
@@ -1898,6 +1918,7 @@ args=(
\${par_no_error_on_invalid:+--no-error-on-invalid}
\${par_no_projects:+--no-projects}
\${par_split_lanes:+--split-lanes}
\${par_group_well_label:+--group-well-label}
\${par_force_index_orientation:+--force-index-orientation}
\${par_skip_qc_report:+--skip-qc-report}
\${par_skip_multi_qc:+--skip-multi-qc}

View File

@@ -1,6 +1,6 @@
name: "bbmap_bbsplit"
namespace: "bbmap"
version: "v0.4.1"
version: "v0.4.2"
argument_groups:
- name: "Input"
arguments:
@@ -348,7 +348,7 @@ engines:
id: "docker"
image: "ubuntu:22.04"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -371,11 +371,11 @@ build_info:
output: "target/executable/bbmap/bbmap_bbsplit"
executable: "target/executable/bbmap/bbmap_bbsplit/bbmap_bbsplit"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -396,7 +396,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bbmap_bbsplit v0.4.1
# bbmap_bbsplit v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -454,10 +454,10 @@ cp -r bbmap/* /usr/local/bin
RUN bbsplit.sh --version 2>&1 | awk '/BBMap version/{print "BBMAP:", $NF}' > /var/software_versions.txt
LABEL org.opencontainers.image.description="Companion container for running component bbmap bbmap_bbsplit"
LABEL org.opencontainers.image.created="2025-10-03T12:12:04Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:56Z"
LABEL org.opencontainers.image.source="https://github.com/BioInfoTools/BBMap/blob/master/sh/bbsplit.sh"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -574,7 +574,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bbmap_bbsplit v0.4.1"
echo "bbmap_bbsplit v0.4.2"
echo ""
echo "Split sequencing reads by mapping them to multiple references simultaneously."
echo ""
@@ -765,7 +765,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bbmap_bbsplit v0.4.1"
echo "bbmap_bbsplit v0.4.2"
exit
;;
--id)
@@ -1097,7 +1097,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bbmap/bbmap_bbsplit:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bbmap/bbmap_bbsplit:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bcftools_annotate"
namespace: "bcftools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -453,7 +453,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bcftools:1.22--h3a4d415_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -471,11 +471,11 @@ build_info:
output: "target/executable/bcftools/bcftools_annotate"
executable: "target/executable/bcftools/bcftools_annotate/bcftools_annotate"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -496,7 +496,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcftools_annotate v0.4.1
# bcftools_annotate v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN echo "bcftools: \"$(bcftools --version | grep 'bcftools' | sed -n 's/^bcftoo
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bcftools bcftools_annotate"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:47Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/bcftools"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcftools_annotate v0.4.1"
echo "bcftools_annotate v0.4.2"
echo ""
echo "Add or remove annotations from a VCF/BCF file."
echo ""
@@ -815,7 +815,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcftools_annotate v0.4.1"
echo "bcftools_annotate v0.4.2"
exit
;;
--input)
@@ -1300,7 +1300,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_annotate:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_annotate:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bcftools_concat"
namespace: "bcftools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -367,7 +367,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bcftools:1.22--h3a4d415_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -384,11 +384,11 @@ build_info:
output: "target/executable/bcftools/bcftools_concat"
executable: "target/executable/bcftools/bcftools_concat/bcftools_concat"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -409,7 +409,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcftools_concat v0.4.1
# bcftools_concat v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bcftools --version 2>&1 | head -1 | sed 's/bcftools /bcftools: /' > /var/sof
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bcftools bcftools_concat"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:47Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/bcftools"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcftools_concat v0.4.1"
echo "bcftools_concat v0.4.2"
echo ""
echo "Concatenate or combine VCF/BCF files. All source files must have the same sample"
echo "columns appearing in the same order. The program can be used, for example, to"
@@ -767,7 +767,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcftools_concat v0.4.1"
echo "bcftools_concat v0.4.2"
exit
;;
--input)
@@ -1128,7 +1128,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_concat:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_concat:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bcftools_norm"
namespace: "bcftools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -527,7 +527,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bcftools:1.22--h3a4d415_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -544,11 +544,11 @@ build_info:
output: "target/executable/bcftools/bcftools_norm"
executable: "target/executable/bcftools/bcftools_norm/bcftools_norm"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -569,7 +569,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcftools_norm v0.4.1
# bcftools_norm v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bcftools --version 2>&1 | head -1 | sed 's/bcftools /bcftools: /' > /var/sof
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bcftools bcftools_norm"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:46Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/bcftools"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcftools_norm v0.4.1"
echo "bcftools_norm v0.4.2"
echo ""
echo "Left-align and normalize indels, check if REF alleles match the reference, split"
echo "multiallelic sites into multiple rows;"
@@ -843,7 +843,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcftools_norm v0.4.1"
echo "bcftools_norm v0.4.2"
exit
;;
--input)
@@ -1350,7 +1350,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_norm:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_norm:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bcftools_sort"
namespace: "bcftools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -187,7 +187,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bcftools:1.22--h3a4d415_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -204,11 +204,11 @@ build_info:
output: "target/executable/bcftools/bcftools_sort"
executable: "target/executable/bcftools/bcftools_sort/bcftools_sort"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -229,7 +229,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcftools_sort v0.4.1
# bcftools_sort v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bcftools --version 2>&1 | head -1 | sed 's/bcftools /bcftools: /' > /var/sof
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bcftools bcftools_sort"
LABEL org.opencontainers.image.created="2025-10-03T12:12:00Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:47Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/bcftools"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcftools_sort v0.4.1"
echo "bcftools_sort v0.4.2"
echo ""
echo "Sort VCF/BCF file."
echo ""
@@ -662,7 +662,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcftools_sort v0.4.1"
echo "bcftools_sort v0.4.2"
exit
;;
--input)
@@ -832,7 +832,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_sort:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_sort:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bcftools_stats"
namespace: "bcftools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -413,7 +413,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bcftools:1.22--h3a4d415_1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -430,11 +430,11 @@ build_info:
output: "target/executable/bcftools/bcftools_stats"
executable: "target/executable/bcftools/bcftools_stats/bcftools_stats"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -455,7 +455,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcftools_stats v0.4.1
# bcftools_stats v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bcftools --version | head -1 | sed 's/bcftools /bcftools: /' > /var/software
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo"
LABEL org.opencontainers.image.description="Companion container for running component bcftools bcftools_stats"
LABEL org.opencontainers.image.created="2025-10-03T12:11:59Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:48Z"
LABEL org.opencontainers.image.source="https://github.com/samtools/bcftools"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcftools_stats v0.4.1"
echo "bcftools_stats v0.4.2"
echo ""
echo "Parses VCF or BCF and produces a txt stats file which can be plotted using"
echo "plot-vcfstats."
@@ -753,7 +753,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcftools_stats v0.4.1"
echo "bcftools_stats v0.4.2"
exit
;;
--input)
@@ -1190,7 +1190,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_stats:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcftools/bcftools_stats:v0.4.2'
fi
# print dockerfile

View File

@@ -1,5 +1,5 @@
name: "bcl_convert"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Toni Verbeiren"
roles:
@@ -399,7 +399,7 @@ engines:
id: "docker"
image: "debian:trixie-slim"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "apt"
@@ -431,11 +431,11 @@ build_info:
output: "target/executable/bcl_convert"
executable: "target/executable/bcl_convert/bcl_convert"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -456,7 +456,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bcl_convert v0.4.1
# bcl_convert v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -462,10 +462,10 @@ RUN echo "bcl-convert: \"$(bcl-convert -V 2>&1 >/dev/null | sed -n '/Version/ s/
LABEL org.opencontainers.image.authors="Toni Verbeiren, Dorien Roosen"
LABEL org.opencontainers.image.description="Companion container for running component bcl_convert"
LABEL org.opencontainers.image.created="2025-10-03T12:12:04Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:51Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/biobox"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -582,7 +582,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bcl_convert v0.4.1"
echo "bcl_convert v0.4.2"
echo ""
echo "Convert bcl files to fastq files using bcl-convert."
echo "Information about upgrading from bcl2fastq via"
@@ -769,7 +769,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bcl_convert v0.4.1"
echo "bcl_convert v0.4.2"
exit
;;
--bcl_input_directory)
@@ -1142,7 +1142,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcl_convert:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bcl_convert:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bd_rhapsody_make_reference"
namespace: "bd_rhapsody"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -247,7 +247,7 @@ engines:
id: "docker"
image: "bdgenomics/rhapsody:2.2.1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "apt"
@@ -280,11 +280,11 @@ build_info:
output: "target/executable/bd_rhapsody/bd_rhapsody_make_reference"
executable: "target/executable/bd_rhapsody/bd_rhapsody_make_reference/bd_rhapsody_make_reference"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -305,7 +305,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bd_rhapsody_make_reference v0.4.1
# bd_rhapsody_make_reference v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -465,10 +465,10 @@ RUN VERSION=$(ls -v /var/bd_rhapsody_cwl | grep '^v' | sed 's#v##' | tail -1)
RUN echo "bdgenomics/rhapsody: \"$VERSION\"" > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Robrecht Cannoodt, Weiwei Schultz"
LABEL org.opencontainers.image.description="Companion container for running component bd_rhapsody bd_rhapsody_make_reference"
LABEL org.opencontainers.image.created="2025-10-03T12:11:57Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:59Z"
LABEL org.opencontainers.image.source="https://bitbucket.org/CRSwDev/cwl/src/master/v2.2.1/Extra_Utilities/"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -585,7 +585,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bd_rhapsody_make_reference v0.4.1"
echo "bd_rhapsody_make_reference v0.4.2"
echo ""
echo "The Reference Files Generator creates an archive containing Genome Index"
echo "and Transcriptome annotation files needed for the BD Rhapsody Sequencing"
@@ -719,7 +719,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bd_rhapsody_make_reference v0.4.1"
echo "bd_rhapsody_make_reference v0.4.2"
exit
;;
--genome_fasta)
@@ -910,7 +910,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bd_rhapsody/bd_rhapsody_make_reference:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bd_rhapsody/bd_rhapsody_make_reference:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bd_rhapsody_sequence_analysis"
namespace: "bd_rhapsody"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -1081,7 +1081,7 @@ engines:
id: "docker"
image: "bdgenomics/rhapsody:2.2.1"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "apt"
@@ -1121,11 +1121,11 @@ build_info:
output: "target/executable/bd_rhapsody/bd_rhapsody_sequence_analysis"
executable: "target/executable/bd_rhapsody/bd_rhapsody_sequence_analysis/bd_rhapsody_sequence_analysis"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -1146,7 +1146,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bd_rhapsody_sequence_analysis v0.4.1
# bd_rhapsody_sequence_analysis v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -465,10 +465,10 @@ RUN VERSION=$(ls -v /var/bd_rhapsody_cwl | grep '^v' | sed 's#v##' | tail -1)
RUN echo "bdgenomics/rhapsody: \"$VERSION\"" > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Robrecht Cannoodt, Weiwei Schultz"
LABEL org.opencontainers.image.description="Companion container for running component bd_rhapsody bd_rhapsody_sequence_analysis"
LABEL org.opencontainers.image.created="2025-10-03T12:11:57Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:59Z"
LABEL org.opencontainers.image.source="https://bitbucket.org/CRSwDev/cwl/src/master/v2.2.1"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -585,7 +585,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bd_rhapsody_sequence_analysis v0.4.1"
echo "bd_rhapsody_sequence_analysis v0.4.2"
echo ""
echo "BD Rhapsody Sequence Analysis CWL pipeline v2.2."
echo ""
@@ -1119,7 +1119,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bd_rhapsody_sequence_analysis v0.4.1"
echo "bd_rhapsody_sequence_analysis v0.4.2"
exit
;;
--reads)
@@ -1970,7 +1970,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bd_rhapsody/bd_rhapsody_sequence_analysis:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bd_rhapsody/bd_rhapsody_sequence_analysis:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_annotate"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -230,7 +230,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -247,11 +247,11 @@ build_info:
output: "target/executable/bedtools/bedtools_annotate"
executable: "target/executable/bedtools/bedtools_annotate/bedtools_annotate"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -272,7 +272,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_annotate v0.4.1
# bedtools_annotate v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -451,10 +451,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_annotate"
LABEL org.opencontainers.image.created="2025-10-03T12:12:10Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:59Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -571,7 +571,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_annotate v0.4.1"
echo "bedtools_annotate v0.4.2"
echo ""
echo "Annotates the depth and breadth of coverage of features from multiple files."
echo ""
@@ -693,7 +693,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_annotate v0.4.1"
echo "bedtools_annotate v0.4.2"
exit
;;
--input)
@@ -876,7 +876,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_annotate:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_annotate:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_bamtobed"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -249,7 +249,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -266,11 +266,11 @@ build_info:
output: "target/executable/bedtools/bedtools_bamtobed"
executable: "target/executable/bedtools/bedtools_bamtobed/bedtools_bamtobed"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -291,7 +291,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_bamtobed v0.4.1
# bedtools_bamtobed v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_bamtobed"
LABEL org.opencontainers.image.created="2025-10-03T12:12:05Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:59Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_bamtobed v0.4.1"
echo "bedtools_bamtobed v0.4.2"
echo ""
echo "Converts BAM alignments to BED6 or BEDPE format."
echo ""
@@ -716,7 +716,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_bamtobed v0.4.1"
echo "bedtools_bamtobed v0.4.2"
exit
;;
--input)
@@ -903,7 +903,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bamtobed:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bamtobed:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_bamtofastq"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -194,7 +194,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -211,11 +211,11 @@ build_info:
output: "target/executable/bedtools/bedtools_bamtofastq"
executable: "target/executable/bedtools/bedtools_bamtofastq/bedtools_bamtofastq"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -236,7 +236,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_bamtofastq v0.4.1
# bedtools_bamtofastq v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_bamtofastq"
LABEL org.opencontainers.image.created="2025-10-03T12:12:06Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:43Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_bamtofastq v0.4.1"
echo "bedtools_bamtofastq v0.4.2"
echo ""
echo "Convert BAM alignments to FASTQ files."
echo ""
@@ -661,7 +661,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_bamtofastq v0.4.1"
echo "bedtools_bamtofastq v0.4.2"
exit
;;
--input)
@@ -808,7 +808,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bamtofastq:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bamtofastq:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_bed12tobed6"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -182,7 +182,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -199,11 +199,11 @@ build_info:
output: "target/executable/bedtools/bedtools_bed12tobed6"
executable: "target/executable/bedtools/bedtools_bed12tobed6/bedtools_bed12tobed6"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -224,7 +224,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_bed12tobed6 v0.4.1
# bedtools_bed12tobed6 v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_bed12tobed6"
LABEL org.opencontainers.image.created="2025-10-03T12:12:02Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:54Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_bed12tobed6 v0.4.1"
echo "bedtools_bed12tobed6 v0.4.2"
echo ""
echo "Converts BED features in BED12 (a.k.a. “blocked” BED features such as genes) to"
echo "discrete BED6 features."
@@ -654,7 +654,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_bed12tobed6 v0.4.1"
echo "bedtools_bed12tobed6 v0.4.2"
exit
;;
--input)
@@ -789,7 +789,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bed12tobed6:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bed12tobed6:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_bedpetobam"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -202,7 +202,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -219,11 +219,11 @@ build_info:
output: "target/executable/bedtools/bedtools_bedpetobam"
executable: "target/executable/bedtools/bedtools_bedpetobam/bedtools_bedpetobam"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -244,7 +244,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_bedpetobam v0.4.1
# bedtools_bedpetobam v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_bedpetobam"
LABEL org.opencontainers.image.created="2025-10-03T12:12:11Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:58Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_bedpetobam v0.4.1"
echo "bedtools_bedpetobam v0.4.2"
echo ""
echo "Convert BEDPE (paired-end BED) intervals to BAM format."
echo ""
@@ -671,7 +671,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_bedpetobam v0.4.1"
echo "bedtools_bedpetobam v0.4.2"
exit
;;
--input)
@@ -823,7 +823,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bedpetobam:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bedpetobam:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_bedtobam"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -218,7 +218,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -235,11 +235,11 @@ build_info:
output: "target/executable/bedtools/bedtools_bedtobam"
executable: "target/executable/bedtools/bedtools_bedtobam/bedtools_bedtobam"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -260,7 +260,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_bedtobam v0.4.1
# bedtools_bedtobam v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_bedtobam"
LABEL org.opencontainers.image.created="2025-10-03T12:12:10Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:45Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_bedtobam v0.4.1"
echo "bedtools_bedtobam v0.4.2"
echo ""
echo "Converts feature records to BAM format."
echo ""
@@ -678,7 +678,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_bedtobam v0.4.1"
echo "bedtools_bedtobam v0.4.2"
exit
;;
--input)
@@ -852,7 +852,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bedtobam:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_bedtobam:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_closest"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -324,7 +324,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -341,11 +341,11 @@ build_info:
output: "target/executable/bedtools/bedtools_closest"
executable: "target/executable/bedtools/bedtools_closest/bedtools_closest"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -366,7 +366,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_closest v0.4.1
# bedtools_closest v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -451,10 +451,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_closest"
LABEL org.opencontainers.image.created="2025-10-03T12:12:08Z"
LABEL org.opencontainers.image.created="2025-11-20T08:45:00Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -571,7 +571,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_closest v0.4.1"
echo "bedtools_closest v0.4.2"
echo ""
echo "Find the closest feature in file B for each feature in file A."
echo ""
@@ -747,7 +747,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_closest v0.4.1"
echo "bedtools_closest v0.4.2"
exit
;;
--input_a)
@@ -1033,7 +1033,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_closest:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_closest:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_cluster"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -191,7 +191,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -208,11 +208,11 @@ build_info:
output: "target/executable/bedtools/bedtools_cluster"
executable: "target/executable/bedtools/bedtools_cluster/bedtools_cluster"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -233,7 +233,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_cluster v0.4.1
# bedtools_cluster v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_cluster"
LABEL org.opencontainers.image.created="2025-10-03T12:12:02Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:56Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_cluster v0.4.1"
echo "bedtools_cluster v0.4.2"
echo ""
echo "Cluster overlapping or nearby genomic intervals."
echo ""
@@ -664,7 +664,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_cluster v0.4.1"
echo "bedtools_cluster v0.4.2"
exit
;;
--input)
@@ -810,7 +810,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_cluster:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_cluster:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_complement"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -192,7 +192,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -209,11 +209,11 @@ build_info:
output: "target/executable/bedtools/bedtools_complement"
executable: "target/executable/bedtools/bedtools_complement/bedtools_complement"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -234,7 +234,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_complement v0.4.1
# bedtools_complement v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_complement"
LABEL org.opencontainers.image.created="2025-10-03T12:12:07Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:56Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_complement v0.4.1"
echo "bedtools_complement v0.4.2"
echo ""
echo "Find genomic intervals that are NOT covered by input intervals."
echo ""
@@ -666,7 +666,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_complement v0.4.1"
echo "bedtools_complement v0.4.2"
exit
;;
--input)
@@ -812,7 +812,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_complement:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_complement:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_coverage"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -345,7 +345,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -362,11 +362,11 @@ build_info:
output: "target/executable/bedtools/bedtools_coverage"
executable: "target/executable/bedtools/bedtools_coverage/bedtools_coverage"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -387,7 +387,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_coverage v0.4.1
# bedtools_coverage v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_coverage"
LABEL org.opencontainers.image.created="2025-10-03T12:12:06Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:55Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_coverage v0.4.1"
echo "bedtools_coverage v0.4.2"
echo ""
echo "Calculate coverage of genomic intervals from one file over intervals in another."
echo ""
@@ -762,7 +762,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_coverage v0.4.1"
echo "bedtools_coverage v0.4.2"
exit
;;
--input_a)
@@ -1073,7 +1073,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_coverage:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_coverage:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_expand"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -177,7 +177,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -194,11 +194,11 @@ build_info:
output: "target/executable/bedtools/bedtools_expand"
executable: "target/executable/bedtools/bedtools_expand/bedtools_expand"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -219,7 +219,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_expand v0.4.1
# bedtools_expand v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_expand"
LABEL org.opencontainers.image.created="2025-10-03T12:12:07Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_expand v0.4.1"
echo "bedtools_expand v0.4.2"
echo ""
echo "Expand rows by splitting comma-separated values into separate rows."
echo ""
@@ -654,7 +654,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_expand v0.4.1"
echo "bedtools_expand v0.4.2"
exit
;;
--input)
@@ -790,7 +790,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_expand:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_expand:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_fisher"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -326,7 +326,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -343,11 +343,11 @@ build_info:
output: "target/executable/bedtools/bedtools_fisher"
executable: "target/executable/bedtools/bedtools_fisher/bedtools_fisher"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -368,7 +368,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_fisher v0.4.1
# bedtools_fisher v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_fisher"
LABEL org.opencontainers.image.created="2025-10-03T12:12:04Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:55Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_fisher v0.4.1"
echo "bedtools_fisher v0.4.2"
echo ""
echo "Calculate Fisher's exact test statistic between two feature files."
echo ""
@@ -758,7 +758,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_fisher v0.4.1"
echo "bedtools_fisher v0.4.2"
exit
;;
--input_a)
@@ -1052,7 +1052,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_fisher:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_fisher:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_flank"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Robrecht Cannoodt"
roles:
@@ -257,7 +257,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -274,11 +274,11 @@ build_info:
output: "target/executable/bedtools/bedtools_flank"
executable: "target/executable/bedtools/bedtools_flank/bedtools_flank"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -299,7 +299,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_flank v0.4.1
# bedtools_flank v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/
LABEL org.opencontainers.image.authors="Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_flank"
LABEL org.opencontainers.image.created="2025-10-03T12:12:03Z"
LABEL org.opencontainers.image.created="2025-11-20T08:45:00Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_flank v0.4.1"
echo "bedtools_flank v0.4.2"
echo ""
echo "Create flanking intervals for each genomic feature."
echo ""
@@ -704,7 +704,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_flank v0.4.1"
echo "bedtools_flank v0.4.2"
exit
;;
--input)
@@ -916,7 +916,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_flank:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_flank:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_genomecov"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -349,7 +349,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -366,11 +366,11 @@ build_info:
output: "target/executable/bedtools/bedtools_genomecov"
executable: "target/executable/bedtools/bedtools_genomecov/bedtools_genomecov"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -391,7 +391,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_genomecov v0.4.1
# bedtools_genomecov v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_genomecov"
LABEL org.opencontainers.image.created="2025-10-03T12:12:12Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:53Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_genomecov v0.4.1"
echo "bedtools_genomecov v0.4.2"
echo ""
echo "Compute the coverage of a feature file among a genome."
echo ""
@@ -780,7 +780,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_genomecov v0.4.1"
echo "bedtools_genomecov v0.4.2"
exit
;;
--input)
@@ -1088,7 +1088,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_genomecov:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_genomecov:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_getfasta"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Dries Schaumont"
roles:
@@ -246,7 +246,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -263,11 +263,11 @@ build_info:
output: "target/executable/bedtools/bedtools_getfasta"
executable: "target/executable/bedtools/bedtools_getfasta/bedtools_getfasta"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -288,7 +288,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_getfasta v0.4.1
# bedtools_getfasta v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Dries Schaumont, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_getfasta"
LABEL org.opencontainers.image.created="2025-10-03T12:12:05Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:58Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_getfasta v0.4.1"
echo "bedtools_getfasta v0.4.2"
echo ""
echo "Extract DNA sequences from a FASTA file based on feature coordinates."
echo ""
@@ -694,7 +694,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_getfasta v0.4.1"
echo "bedtools_getfasta v0.4.2"
exit
;;
--input_fasta)
@@ -902,7 +902,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_getfasta:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_getfasta:v0.4.2'
fi
# print dockerfile

View File

@@ -1,6 +1,6 @@
name: "bedtools_groupby"
namespace: "bedtools"
version: "v0.4.1"
version: "v0.4.2"
authors:
- name: "Theodoro Gasperin Terra Camargo"
roles:
@@ -268,7 +268,7 @@ engines:
id: "docker"
image: "quay.io/biocontainers/bedtools:2.31.1--h13024bc_3"
target_registry: "images.viash-hub.com"
target_tag: "v0.4.1"
target_tag: "v0.4.2"
namespace_separator: "/"
setup:
- type: "docker"
@@ -285,11 +285,11 @@ build_info:
output: "target/executable/bedtools/bedtools_groupby"
executable: "target/executable/bedtools/bedtools_groupby/bedtools_groupby"
viash_version: "0.9.4"
git_commit: "69186bfc6beed075e81e10f17d24c4c999e87484"
git_commit: "02b470d967226478af69c37eae2b1256be1b78fd"
git_remote: "https://github.com/viash-hub/biobox"
package_config:
name: "biobox"
version: "v0.4.1"
version: "v0.4.2"
summary: "A curated collection of high-quality, standalone bioinformatics components\
\ built with [Viash](https://viash.io).\n"
description: "`biobox` offers a suite of reliable bioinformatics components, similar\
@@ -310,7 +310,7 @@ package_config:
- ".requirements.commands += ['ps']\n"
- ".engines += { type: \"native\" }"
- ".engines[.type == 'docker'].target_registry := 'images.viash-hub.com'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.1'"
- ".engines[.type == 'docker'].target_tag := 'v0.4.2'"
keywords:
- "bioinformatics"
- "modules"

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# bedtools_groupby v0.4.1
# bedtools_groupby v0.4.2
#
# This wrapper script is auto-generated by viash 0.9.4 and is thus a derivative
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
@@ -452,10 +452,10 @@ ENTRYPOINT []
RUN bedtools --version 2>&1 | head -1 | sed 's/.*bedtools v/bedtools: /' > /var/software_versions.txt
LABEL org.opencontainers.image.authors="Theodoro Gasperin Terra Camargo, Robrecht Cannoodt"
LABEL org.opencontainers.image.description="Companion container for running component bedtools bedtools_groupby"
LABEL org.opencontainers.image.created="2025-10-03T12:12:13Z"
LABEL org.opencontainers.image.created="2025-11-20T08:44:44Z"
LABEL org.opencontainers.image.source="https://github.com/arq5x/bedtools2"
LABEL org.opencontainers.image.revision="69186bfc6beed075e81e10f17d24c4c999e87484"
LABEL org.opencontainers.image.version="v0.4.1"
LABEL org.opencontainers.image.revision="02b470d967226478af69c37eae2b1256be1b78fd"
LABEL org.opencontainers.image.version="v0.4.2"
VIASHDOCKER
fi
@@ -572,7 +572,7 @@ VIASH_DOCKER_RUN_ARGS=(-i --rm)
# ViashHelp: Display helpful explanation about this executable
function ViashHelp {
echo "bedtools_groupby v0.4.1"
echo "bedtools_groupby v0.4.2"
echo ""
echo "Summarizes a dataset column based upon common column groupings."
echo "Akin to the SQL \"group by\" command."
@@ -713,7 +713,7 @@ while [[ $# -gt 0 ]]; do
shift 1
;;
--version)
echo "bedtools_groupby v0.4.1"
echo "bedtools_groupby v0.4.2"
exit
;;
--input)
@@ -960,7 +960,7 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
# determine docker image id
if [[ "$VIASH_ENGINE_ID" == 'docker' ]]; then
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_groupby:v0.4.1'
VIASH_DOCKER_IMAGE_ID='images.viash-hub.com/vsh/biobox/bedtools/bedtools_groupby:v0.4.2'
fi
# print dockerfile

Some files were not shown because too many files have changed in this diff Show More