Build branch save-params with version save-params (dbca5cb)

Build pipeline: viash-hub.htrnaseq.save-params-jsfjj

Source commit: dbca5cbb3a

Source message: Apply suggestions from code review
This commit is contained in:
CI
2025-05-08 13:11:57 +00:00
parent ae146ee219
commit cae1b67da7
127 changed files with 2572 additions and 1288 deletions

View File

@@ -147,18 +147,35 @@ build_info:
engine: "docker|native"
output: "target/executable/utils/save_params"
executable: "target/executable/utils/save_params/save_params"
viash_version: "0.9.2"
git_commit: "cc910b428428dd32f183df0c2009fc36e75394e0"
viash_version: "0.9.4"
git_commit: "dbca5cbb3a338287f516c79705fc607bcf0905f7"
git_remote: "https://github.com/viash-hub/htrnaseq"
git_tag: "v0.7.2-21-gdbca5cb"
package_config:
name: "htrnaseq"
version: "save-params"
description: "High-throughput pipeline [WIP]\n"
summary: "A workflow for high-throughput RNA-seq data analyses.\n"
description: "This workflow is designed to process high-throughput RNA-seq data,\
\ where every\nwell of a microarray plate is a sample. A fasta file provided as\
\ input\ndefines the mapping between sample barcodes and wells.\n\nThe workflow\
\ is built in a modular fashion, where most of the base functionality\nis provided\
\ by components from [`biobox`](https://www.viash-hub.com/packages/biobox/latest)\n\
supplemented by custom base components and workflow components in this package.\n\
\nThe full workflow is split in two major subworkflows that can be run independently:\n\
\n* **Well-demultiplexing:** Split the input (plate/pool level) fastq files per\
\ well.\n* **Mapping, counting and QC:** Run per-well mapping, counting and generate\
\ QC reports.\n\nEach of those can be started individually, or the full workflow\
\ can be run in two ways:\n\n1. Run the [main workflow](https://www.viash-hub.com/packages/htrnaseq/v0.3.0/components/workflows/htrnaseq)\
\ \ncontaining the main functionality.\n2. Run the [(opinionated) `runner`](https://www.viash-hub.com/packages/htrnaseq/v0.3.0/components/workflows/runner)\
\ where a\nnumber of choices (input/output structure and location) have been made.\n\
\nInput for the workflow has to be `fastq` files (zipped or not). For bcl or other\
\ formats, please consider running\n[demultiplex](https://www.viash-hub.com/packages/demultiplex)\
\ first.\n"
info:
test_resources:
- path: "gs://viash-hub-test-data/htrnaseq/v1/"
dest: "resources_test"
viash_version: "0.9.2"
viash_version: "0.9.4"
source: "src"
target: "target"
config_mods:
@@ -170,11 +187,13 @@ package_config:
- ".engines[.type == 'docker'].target_tag := 'save-params'"
keywords:
- "bioinformatics"
- "sequence"
- "sequencing"
- "high-throughput"
- "RNAseq"
- "mapping"
- "counting"
- "pipeline"
- "workflow"
license: "MIT"
organization: "vsh"
links:

View File

@@ -27,7 +27,7 @@ process {
withLabel: verylowmem { memory = { get_memory( 4.GB * task.attempt ) } }
withLabel: lowmem { memory = { get_memory( 8.GB * task.attempt ) } }
withLabel: midmem { memory = { get_memory( 16.GB * task.attempt ) } }
withLabel: highmem { memory = { get_memory( 40.GB * task.attempt ) } }
withLabel: highmem { memory = { get_memory( 64.GB * task.attempt ) } }
}

View File

@@ -2,7 +2,7 @@
# save_params save-params
#
# This wrapper script is auto-generated by viash 0.9.2 and is thus a derivative
# 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
# Intuitive.
#
@@ -453,9 +453,9 @@ RUN pip install --upgrade pip && \
pip install --upgrade --no-cache-dir "pyyaml"
LABEL org.opencontainers.image.description="Companion container for running component utils save_params"
LABEL org.opencontainers.image.created="2025-05-06T14:35:26Z"
LABEL org.opencontainers.image.created="2025-05-08T12:21:46Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/htrnaseq"
LABEL org.opencontainers.image.revision="cc910b428428dd32f183df0c2009fc36e75394e0"
LABEL org.opencontainers.image.revision="dbca5cbb3a338287f516c79705fc607bcf0905f7"
LABEL org.opencontainers.image.version="save-params"
VIASHDOCKER