Build branch main with version main (6e71519)

Build pipeline: viash-hub.demultiplex.main-wxzkf

Source commit: 6e71519815

Source message: Replace Falco with FastQC (#51)
This commit is contained in:
CI
2025-05-28 11:25:23 +00:00
parent 029f2aee81
commit 50ab36217a
44 changed files with 1217 additions and 810 deletions

View File

@@ -157,16 +157,16 @@ build_info:
output: "target/executable/io/interop_summary_to_csv"
executable: "target/executable/io/interop_summary_to_csv/interop_summary_to_csv"
viash_version: "0.9.4"
git_commit: "219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
git_commit: "6e71519815566a057711019a23a56a22479dd655"
git_remote: "https://github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-30-g219bd58"
git_tag: "v0.1.1-31-g6e71519"
package_config:
name: "demultiplex"
version: "main"
description: "Demultiplexing pipeline\n"
info:
test_resources:
- path: "gs://viash-hub-resources/demultiplex/v3"
- path: "gs://viash-hub-resources/demultiplex/v4"
dest: "testData"
viash_version: "0.9.4"
source: "src"

View File

@@ -454,9 +454,9 @@ tar -C /tmp/ --no-same-owner --no-same-permissions -xvf /tmp/interop.tar.gz && \
mv /tmp/interop-1.3.1-Linux-GNU/bin/index-summary /tmp/interop-1.3.1-Linux-GNU/bin/summary /usr/local/bin/
LABEL org.opencontainers.image.description="Companion container for running component io interop_summary_to_csv"
LABEL org.opencontainers.image.created="2025-05-26T10:28:13Z"
LABEL org.opencontainers.image.created="2025-05-28T11:02:52Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
LABEL org.opencontainers.image.revision="6e71519815566a057711019a23a56a22479dd655"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER

View File

@@ -15,8 +15,8 @@ argument_groups:
multiple: false
multiple_sep: ";"
- type: "file"
name: "--input_falco"
description: "Directory to write falco output to"
name: "--input_sample_qc"
description: "Directory to write sample QC output to"
info: null
must_exist: true
create_parent: true
@@ -67,7 +67,7 @@ argument_groups:
multiple: false
multiple_sep: ";"
- type: "file"
name: "--output_falco"
name: "--output_sample_qc"
info: null
default:
- "qc/fastqc"
@@ -219,16 +219,16 @@ build_info:
output: "target/executable/io/publish"
executable: "target/executable/io/publish/publish"
viash_version: "0.9.4"
git_commit: "219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
git_commit: "6e71519815566a057711019a23a56a22479dd655"
git_remote: "https://github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-30-g219bd58"
git_tag: "v0.1.1-31-g6e71519"
package_config:
name: "demultiplex"
version: "main"
description: "Demultiplexing pipeline\n"
info:
test_resources:
- path: "gs://viash-hub-resources/demultiplex/v3"
- path: "gs://viash-hub-resources/demultiplex/v4"
dest: "testData"
viash_version: "0.9.4"
source: "src"

View File

@@ -450,9 +450,9 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*
LABEL org.opencontainers.image.description="Companion container for running component io publish"
LABEL org.opencontainers.image.created="2025-05-26T10:28:13Z"
LABEL org.opencontainers.image.created="2025-05-28T11:02:51Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
LABEL org.opencontainers.image.revision="6e71519815566a057711019a23a56a22479dd655"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER
@@ -579,9 +579,9 @@ function ViashHelp {
echo " type: file, required parameter, file must exist"
echo " Directory to write fastq data to"
echo ""
echo " --input_falco"
echo " --input_sample_qc"
echo " type: file, required parameter, multiple values allowed, file must exist"
echo " Directory to write falco output to"
echo " Directory to write sample QC output to"
echo ""
echo " --input_multiqc"
echo " type: file, required parameter, file must exist"
@@ -599,7 +599,7 @@ function ViashHelp {
echo " type: file, output, file must exist"
echo " default: fastq"
echo ""
echo " --output_falco"
echo " --output_sample_qc"
echo " type: file, output, file must exist"
echo " default: qc/fastqc"
echo ""
@@ -676,20 +676,20 @@ while [[ $# -gt 0 ]]; do
VIASH_PAR_INPUT=$(ViashRemoveFlags "$1")
shift 1
;;
--input_falco)
if [ -z "$VIASH_PAR_INPUT_FALCO" ]; then
VIASH_PAR_INPUT_FALCO="$2"
--input_sample_qc)
if [ -z "$VIASH_PAR_INPUT_SAMPLE_QC" ]; then
VIASH_PAR_INPUT_SAMPLE_QC="$2"
else
VIASH_PAR_INPUT_FALCO="$VIASH_PAR_INPUT_FALCO;""$2"
VIASH_PAR_INPUT_SAMPLE_QC="$VIASH_PAR_INPUT_SAMPLE_QC;""$2"
fi
[ $# -lt 2 ] && ViashError Not enough arguments passed to --input_falco. Use "--help" to get more information on the parameters. && exit 1
[ $# -lt 2 ] && ViashError Not enough arguments passed to --input_sample_qc. Use "--help" to get more information on the parameters. && exit 1
shift 2
;;
--input_falco=*)
if [ -z "$VIASH_PAR_INPUT_FALCO" ]; then
VIASH_PAR_INPUT_FALCO=$(ViashRemoveFlags "$1")
--input_sample_qc=*)
if [ -z "$VIASH_PAR_INPUT_SAMPLE_QC" ]; then
VIASH_PAR_INPUT_SAMPLE_QC=$(ViashRemoveFlags "$1")
else
VIASH_PAR_INPUT_FALCO="$VIASH_PAR_INPUT_FALCO;"$(ViashRemoveFlags "$1")
VIASH_PAR_INPUT_SAMPLE_QC="$VIASH_PAR_INPUT_SAMPLE_QC;"$(ViashRemoveFlags "$1")
fi
shift 1
;;
@@ -737,15 +737,15 @@ while [[ $# -gt 0 ]]; do
VIASH_PAR_OUTPUT=$(ViashRemoveFlags "$1")
shift 1
;;
--output_falco)
[ -n "$VIASH_PAR_OUTPUT_FALCO" ] && ViashError Bad arguments for option \'--output_falco\': \'$VIASH_PAR_OUTPUT_FALCO\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_OUTPUT_FALCO="$2"
[ $# -lt 2 ] && ViashError Not enough arguments passed to --output_falco. Use "--help" to get more information on the parameters. && exit 1
--output_sample_qc)
[ -n "$VIASH_PAR_OUTPUT_SAMPLE_QC" ] && ViashError Bad arguments for option \'--output_sample_qc\': \'$VIASH_PAR_OUTPUT_SAMPLE_QC\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_OUTPUT_SAMPLE_QC="$2"
[ $# -lt 2 ] && ViashError Not enough arguments passed to --output_sample_qc. Use "--help" to get more information on the parameters. && exit 1
shift 2
;;
--output_falco=*)
[ -n "$VIASH_PAR_OUTPUT_FALCO" ] && ViashError Bad arguments for option \'--output_falco=*\': \'$VIASH_PAR_OUTPUT_FALCO\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_OUTPUT_FALCO=$(ViashRemoveFlags "$1")
--output_sample_qc=*)
[ -n "$VIASH_PAR_OUTPUT_SAMPLE_QC" ] && ViashError Bad arguments for option \'--output_sample_qc=*\': \'$VIASH_PAR_OUTPUT_SAMPLE_QC\' \& \'$2\' - you should provide exactly one argument for this option. && exit 1
VIASH_PAR_OUTPUT_SAMPLE_QC=$(ViashRemoveFlags "$1")
shift 1
;;
--output_multiqc)
@@ -957,8 +957,8 @@ if [ -z ${VIASH_PAR_INPUT+x} ]; then
ViashError '--input' is a required argument. Use "--help" to get more information on the parameters.
exit 1
fi
if [ -z ${VIASH_PAR_INPUT_FALCO+x} ]; then
ViashError '--input_falco' is a required argument. Use "--help" to get more information on the parameters.
if [ -z ${VIASH_PAR_INPUT_SAMPLE_QC+x} ]; then
ViashError '--input_sample_qc' is a required argument. Use "--help" to get more information on the parameters.
exit 1
fi
if [ -z ${VIASH_PAR_INPUT_MULTIQC+x} ]; then
@@ -1002,8 +1002,8 @@ fi
if [ -z ${VIASH_PAR_OUTPUT+x} ]; then
VIASH_PAR_OUTPUT="fastq"
fi
if [ -z ${VIASH_PAR_OUTPUT_FALCO+x} ]; then
VIASH_PAR_OUTPUT_FALCO="qc/fastqc"
if [ -z ${VIASH_PAR_OUTPUT_SAMPLE_QC+x} ]; then
VIASH_PAR_OUTPUT_SAMPLE_QC="qc/fastqc"
fi
if [ -z ${VIASH_PAR_OUTPUT_MULTIQC+x} ]; then
VIASH_PAR_OUTPUT_MULTIQC="qc/multiqc_report.html"
@@ -1020,10 +1020,10 @@ if [ ! -z "$VIASH_PAR_INPUT" ] && [ ! -e "$VIASH_PAR_INPUT" ]; then
ViashError "Input file '$VIASH_PAR_INPUT' does not exist."
exit 1
fi
if [ ! -z "$VIASH_PAR_INPUT_FALCO" ]; then
if [ ! -z "$VIASH_PAR_INPUT_SAMPLE_QC" ]; then
IFS=';'
set -f
for file in $VIASH_PAR_INPUT_FALCO; do
for file in $VIASH_PAR_INPUT_SAMPLE_QC; do
unset IFS
if [ ! -e "$file" ]; then
ViashError "Input file '$file' does not exist."
@@ -1123,8 +1123,8 @@ fi
if [ ! -z "$VIASH_PAR_OUTPUT" ] && [ ! -d "$(dirname "$VIASH_PAR_OUTPUT")" ]; then
mkdir -p "$(dirname "$VIASH_PAR_OUTPUT")"
fi
if [ ! -z "$VIASH_PAR_OUTPUT_FALCO" ] && [ ! -d "$(dirname "$VIASH_PAR_OUTPUT_FALCO")" ]; then
mkdir -p "$(dirname "$VIASH_PAR_OUTPUT_FALCO")"
if [ ! -z "$VIASH_PAR_OUTPUT_SAMPLE_QC" ] && [ ! -d "$(dirname "$VIASH_PAR_OUTPUT_SAMPLE_QC")" ]; then
mkdir -p "$(dirname "$VIASH_PAR_OUTPUT_SAMPLE_QC")"
fi
if [ ! -z "$VIASH_PAR_OUTPUT_MULTIQC" ] && [ ! -d "$(dirname "$VIASH_PAR_OUTPUT_MULTIQC")" ]; then
mkdir -p "$(dirname "$VIASH_PAR_OUTPUT_MULTIQC")"
@@ -1152,16 +1152,16 @@ if [ ! -z "$VIASH_PAR_INPUT" ]; then
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$VIASH_PAR_INPUT")" )
VIASH_PAR_INPUT=$(ViashDockerAutodetectMount "$VIASH_PAR_INPUT")
fi
if [ ! -z "$VIASH_PAR_INPUT_FALCO" ]; then
VIASH_TEST_INPUT_FALCO=()
if [ ! -z "$VIASH_PAR_INPUT_SAMPLE_QC" ]; then
VIASH_TEST_INPUT_SAMPLE_QC=()
IFS=';'
for var in $VIASH_PAR_INPUT_FALCO; do
for var in $VIASH_PAR_INPUT_SAMPLE_QC; do
unset IFS
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$var")" )
var=$(ViashDockerAutodetectMount "$var")
VIASH_TEST_INPUT_FALCO+=( "$var" )
VIASH_TEST_INPUT_SAMPLE_QC+=( "$var" )
done
VIASH_PAR_INPUT_FALCO=$(IFS=';' ; echo "${VIASH_TEST_INPUT_FALCO[*]}")
VIASH_PAR_INPUT_SAMPLE_QC=$(IFS=';' ; echo "${VIASH_TEST_INPUT_SAMPLE_QC[*]}")
fi
if [ ! -z "$VIASH_PAR_INPUT_MULTIQC" ]; then
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$VIASH_PAR_INPUT_MULTIQC")" )
@@ -1180,10 +1180,10 @@ if [ ! -z "$VIASH_PAR_OUTPUT" ]; then
VIASH_PAR_OUTPUT=$(ViashDockerAutodetectMount "$VIASH_PAR_OUTPUT")
VIASH_CHOWN_VARS+=( "$VIASH_PAR_OUTPUT" )
fi
if [ ! -z "$VIASH_PAR_OUTPUT_FALCO" ]; then
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$VIASH_PAR_OUTPUT_FALCO")" )
VIASH_PAR_OUTPUT_FALCO=$(ViashDockerAutodetectMount "$VIASH_PAR_OUTPUT_FALCO")
VIASH_CHOWN_VARS+=( "$VIASH_PAR_OUTPUT_FALCO" )
if [ ! -z "$VIASH_PAR_OUTPUT_SAMPLE_QC" ]; then
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$VIASH_PAR_OUTPUT_SAMPLE_QC")" )
VIASH_PAR_OUTPUT_SAMPLE_QC=$(ViashDockerAutodetectMount "$VIASH_PAR_OUTPUT_SAMPLE_QC")
VIASH_CHOWN_VARS+=( "$VIASH_PAR_OUTPUT_SAMPLE_QC" )
fi
if [ ! -z "$VIASH_PAR_OUTPUT_MULTIQC" ]; then
VIASH_DIRECTORY_MOUNTS+=( "$(ViashDockerAutodetectMountArg "$VIASH_PAR_OUTPUT_MULTIQC")" )
@@ -1270,12 +1270,12 @@ cat > "\$tempscript" << 'VIASHMAIN'
## VIASH START
# The following code has been auto-generated by Viash.
$( if [ ! -z ${VIASH_PAR_INPUT+x} ]; then echo "${VIASH_PAR_INPUT}" | sed "s#'#'\"'\"'#g;s#.*#par_input='&'#" ; else echo "# par_input="; fi )
$( if [ ! -z ${VIASH_PAR_INPUT_FALCO+x} ]; then echo "${VIASH_PAR_INPUT_FALCO}" | sed "s#'#'\"'\"'#g;s#.*#par_input_falco='&'#" ; else echo "# par_input_falco="; fi )
$( if [ ! -z ${VIASH_PAR_INPUT_SAMPLE_QC+x} ]; then echo "${VIASH_PAR_INPUT_SAMPLE_QC}" | sed "s#'#'\"'\"'#g;s#.*#par_input_sample_qc='&'#" ; else echo "# par_input_sample_qc="; fi )
$( if [ ! -z ${VIASH_PAR_INPUT_MULTIQC+x} ]; then echo "${VIASH_PAR_INPUT_MULTIQC}" | sed "s#'#'\"'\"'#g;s#.*#par_input_multiqc='&'#" ; else echo "# par_input_multiqc="; fi )
$( if [ ! -z ${VIASH_PAR_INPUT_RUN_INFORMATION+x} ]; then echo "${VIASH_PAR_INPUT_RUN_INFORMATION}" | sed "s#'#'\"'\"'#g;s#.*#par_input_run_information='&'#" ; else echo "# par_input_run_information="; fi )
$( if [ ! -z ${VIASH_PAR_INPUT_DEMULTIPLEXER_LOGS+x} ]; then echo "${VIASH_PAR_INPUT_DEMULTIPLEXER_LOGS}" | sed "s#'#'\"'\"'#g;s#.*#par_input_demultiplexer_logs='&'#" ; else echo "# par_input_demultiplexer_logs="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT+x} ]; then echo "${VIASH_PAR_OUTPUT}" | sed "s#'#'\"'\"'#g;s#.*#par_output='&'#" ; else echo "# par_output="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT_FALCO+x} ]; then echo "${VIASH_PAR_OUTPUT_FALCO}" | sed "s#'#'\"'\"'#g;s#.*#par_output_falco='&'#" ; else echo "# par_output_falco="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT_SAMPLE_QC+x} ]; then echo "${VIASH_PAR_OUTPUT_SAMPLE_QC}" | sed "s#'#'\"'\"'#g;s#.*#par_output_sample_qc='&'#" ; else echo "# par_output_sample_qc="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT_MULTIQC+x} ]; then echo "${VIASH_PAR_OUTPUT_MULTIQC}" | sed "s#'#'\"'\"'#g;s#.*#par_output_multiqc='&'#" ; else echo "# par_output_multiqc="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT_RUN_INFORMATION+x} ]; then echo "${VIASH_PAR_OUTPUT_RUN_INFORMATION}" | sed "s#'#'\"'\"'#g;s#.*#par_output_run_information='&'#" ; else echo "# par_output_run_information="; fi )
$( if [ ! -z ${VIASH_PAR_OUTPUT_DEMULTIPLEXER_LOGS+x} ]; then echo "${VIASH_PAR_OUTPUT_DEMULTIPLEXER_LOGS}" | sed "s#'#'\"'\"'#g;s#.*#par_output_demultiplexer_logs='&'#" ; else echo "# par_output_demultiplexer_logs="; fi )
@@ -1326,12 +1326,12 @@ do
ls "\$output_location"
done
echo "Grouping output from \$par_input_falco into \$par_output_falco"
mkdir -p "\$par_output_falco"
IFS=";" read -ra falco_inputs <<< \$par_input_falco
for falco_dir in "\${falco_inputs[@]}"; do
echo "Copying contents of \$falco_dir"
find -H -D exec "\$falco_dir" -type f -maxdepth 1 -exec cp -t "\$par_output_falco" {} +
echo "Grouping output from \$par_input_sample_qc into \$par_output_sample_qc"
mkdir -p "\$par_output_sample_qc"
IFS=";" read -ra sample_qc_inputs <<< \$par_input_sample_qc
for qc_dir in "\${sample_qc_inputs[@]}"; do
echo "Copying contents of \$qc_dir"
find -H -D exec "\$qc_dir" -type f -maxdepth 1 -exec cp -t "\$par_output_sample_qc" {} +
done
VIASHMAIN
bash "\$tempscript" &
@@ -1346,18 +1346,18 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
if [ ! -z "$VIASH_PAR_INPUT" ]; then
VIASH_PAR_INPUT=$(ViashDockerStripAutomount "$VIASH_PAR_INPUT")
fi
if [ ! -z "$VIASH_PAR_INPUT_FALCO" ]; then
unset VIASH_TEST_INPUT_FALCO
if [ ! -z "$VIASH_PAR_INPUT_SAMPLE_QC" ]; then
unset VIASH_TEST_INPUT_SAMPLE_QC
IFS=';'
for var in $VIASH_PAR_INPUT_FALCO; do
for var in $VIASH_PAR_INPUT_SAMPLE_QC; do
unset IFS
if [ -z "$VIASH_TEST_INPUT_FALCO" ]; then
VIASH_TEST_INPUT_FALCO="$(ViashDockerStripAutomount "$var")"
if [ -z "$VIASH_TEST_INPUT_SAMPLE_QC" ]; then
VIASH_TEST_INPUT_SAMPLE_QC="$(ViashDockerStripAutomount "$var")"
else
VIASH_TEST_INPUT_FALCO="$VIASH_TEST_INPUT_FALCO;""$(ViashDockerStripAutomount "$var")"
VIASH_TEST_INPUT_SAMPLE_QC="$VIASH_TEST_INPUT_SAMPLE_QC;""$(ViashDockerStripAutomount "$var")"
fi
done
VIASH_PAR_INPUT_FALCO="$VIASH_TEST_INPUT_FALCO"
VIASH_PAR_INPUT_SAMPLE_QC="$VIASH_TEST_INPUT_SAMPLE_QC"
fi
if [ ! -z "$VIASH_PAR_INPUT_MULTIQC" ]; then
VIASH_PAR_INPUT_MULTIQC=$(ViashDockerStripAutomount "$VIASH_PAR_INPUT_MULTIQC")
@@ -1371,8 +1371,8 @@ if [[ "$VIASH_ENGINE_TYPE" == "docker" ]]; then
if [ ! -z "$VIASH_PAR_OUTPUT" ]; then
VIASH_PAR_OUTPUT=$(ViashDockerStripAutomount "$VIASH_PAR_OUTPUT")
fi
if [ ! -z "$VIASH_PAR_OUTPUT_FALCO" ]; then
VIASH_PAR_OUTPUT_FALCO=$(ViashDockerStripAutomount "$VIASH_PAR_OUTPUT_FALCO")
if [ ! -z "$VIASH_PAR_OUTPUT_SAMPLE_QC" ]; then
VIASH_PAR_OUTPUT_SAMPLE_QC=$(ViashDockerStripAutomount "$VIASH_PAR_OUTPUT_SAMPLE_QC")
fi
if [ ! -z "$VIASH_PAR_OUTPUT_MULTIQC" ]; then
VIASH_PAR_OUTPUT_MULTIQC=$(ViashDockerStripAutomount "$VIASH_PAR_OUTPUT_MULTIQC")
@@ -1403,8 +1403,8 @@ if [ ! -z "$VIASH_PAR_OUTPUT" ] && [ ! -e "$VIASH_PAR_OUTPUT" ]; then
ViashError "Output file '$VIASH_PAR_OUTPUT' does not exist."
exit 1
fi
if [ ! -z "$VIASH_PAR_OUTPUT_FALCO" ] && [ ! -e "$VIASH_PAR_OUTPUT_FALCO" ]; then
ViashError "Output file '$VIASH_PAR_OUTPUT_FALCO' does not exist."
if [ ! -z "$VIASH_PAR_OUTPUT_SAMPLE_QC" ] && [ ! -e "$VIASH_PAR_OUTPUT_SAMPLE_QC" ]; then
ViashError "Output file '$VIASH_PAR_OUTPUT_SAMPLE_QC' does not exist."
exit 1
fi
if [ ! -z "$VIASH_PAR_OUTPUT_MULTIQC" ] && [ ! -e "$VIASH_PAR_OUTPUT_MULTIQC" ]; then

View File

@@ -156,16 +156,16 @@ build_info:
output: "target/executable/io/untar"
executable: "target/executable/io/untar/untar"
viash_version: "0.9.4"
git_commit: "219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
git_commit: "6e71519815566a057711019a23a56a22479dd655"
git_remote: "https://github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-30-g219bd58"
git_tag: "v0.1.1-31-g6e71519"
package_config:
name: "demultiplex"
version: "main"
description: "Demultiplexing pipeline\n"
info:
test_resources:
- path: "gs://viash-hub-resources/demultiplex/v3"
- path: "gs://viash-hub-resources/demultiplex/v4"
dest: "testData"
viash_version: "0.9.4"
source: "src"

View File

@@ -450,9 +450,9 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*
LABEL org.opencontainers.image.description="Companion container for running component io untar"
LABEL org.opencontainers.image.created="2025-05-26T10:28:12Z"
LABEL org.opencontainers.image.created="2025-05-28T11:02:51Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="219bd5816e7e6a6c80b4d6f6c1d21b3ffe53c880"
LABEL org.opencontainers.image.revision="6e71519815566a057711019a23a56a22479dd655"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER