Build branch main with version main (45accaa)

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

Source commit: 45accaa50e

Source message: Avoid empty csv entries when parsing sample information (#29)
This commit is contained in:
CI
2024-12-11 18:06:57 +00:00
parent 2121a3ac1c
commit 6be5d38b03
22 changed files with 71 additions and 59 deletions

View File

@@ -1,3 +1,9 @@
# demultiplex v0.3.2
# Bug fixes
* Ignore empty CSV entries when parsing sample information (PR #29).
# demultiplex v0.3.1
# Minor updates

View File

@@ -50,7 +50,10 @@ workflow run_wf {
println "Found sample names column '${csv_items[sample_id_column_index]}'."
return
}
samples += csv_items[sample_id_column_index]
def candidate_sample_id = csv_items[sample_id_column_index]
if (candidate_sample_id?.trim()) { // Don't add empty csv entries.
samples += csv_items[sample_id_column_index]
}
}
// This return is important! (If 'true' is returned, the parsing stops.)
return

View File

@@ -141,9 +141,9 @@ 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.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -470,9 +470,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="2024-12-11T15:28:43Z"
LABEL org.opencontainers.image.created="2024-12-11T17:49:17Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="5c096fce4015435019d81e2cc524a478f4034adc"
LABEL org.opencontainers.image.revision="45accaa50e52c6b29c78259995293789f345c80d"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER

View File

@@ -170,9 +170,9 @@ build_info:
output: "target/executable/io/publish"
executable: "target/executable/io/publish/publish"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -482,9 +482,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="2024-12-11T15:28:44Z"
LABEL org.opencontainers.image.created="2024-12-11T17:49:17Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="5c096fce4015435019d81e2cc524a478f4034adc"
LABEL org.opencontainers.image.revision="45accaa50e52c6b29c78259995293789f345c80d"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER

View File

@@ -148,9 +148,9 @@ build_info:
output: "target/executable/io/untar"
executable: "target/executable/io/untar/untar"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -476,9 +476,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="2024-12-11T15:28:44Z"
LABEL org.opencontainers.image.created="2024-12-11T17:49:18Z"
LABEL org.opencontainers.image.source="https://github.com/viash-hub/demultiplex"
LABEL org.opencontainers.image.revision="5c096fce4015435019d81e2cc524a478f4034adc"
LABEL org.opencontainers.image.revision="45accaa50e52c6b29c78259995293789f345c80d"
LABEL org.opencontainers.image.version="main"
VIASHDOCKER

View File

@@ -139,9 +139,9 @@ build_info:
output: "target/nextflow/dataflow/combine_samples"
executable: "target/nextflow/dataflow/combine_samples/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -2972,9 +2972,9 @@ meta = [
"engine" : "native|native",
"output" : "target/nextflow/dataflow/combine_samples",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",

View File

@@ -133,9 +133,9 @@ build_info:
output: "target/nextflow/dataflow/gather_fastqs_and_validate"
executable: "target/nextflow/dataflow/gather_fastqs_and_validate/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -2965,9 +2965,9 @@ meta = [
"engine" : "native|native",
"output" : "target/nextflow/dataflow/gather_fastqs_and_validate",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",
@@ -3063,7 +3063,10 @@ workflow run_wf {
println "Found sample names column '${csv_items[sample_id_column_index]}'."
return
}
samples += csv_items[sample_id_column_index]
def candidate_sample_id = csv_items[sample_id_column_index]
if (candidate_sample_id?.trim()) { // Don't add empty csv entries.
samples += csv_items[sample_id_column_index]
}
}
// This return is important! (If 'true' is returned, the parsing stops.)
return

View File

@@ -220,9 +220,9 @@ build_info:
output: "target/nextflow/demultiplex"
executable: "target/nextflow/demultiplex/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
dependencies:
- "target/nextflow/io/untar"
- "target/nextflow/dataflow/gather_fastqs_and_validate"

View File

@@ -3088,9 +3088,9 @@ meta = [
"engine" : "native|native",
"output" : "target/nextflow/demultiplex",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",

View File

@@ -141,9 +141,9 @@ build_info:
output: "target/nextflow/io/interop_summary_to_csv"
executable: "target/nextflow/io/interop_summary_to_csv/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -2977,9 +2977,9 @@ meta = [
"engine" : "docker|native",
"output" : "target/nextflow/io/interop_summary_to_csv",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",

View File

@@ -170,9 +170,9 @@ build_info:
output: "target/nextflow/io/publish"
executable: "target/nextflow/io/publish/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -3012,9 +3012,9 @@ meta = [
"engine" : "docker|native",
"output" : "target/nextflow/io/publish",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",

View File

@@ -148,9 +148,9 @@ build_info:
output: "target/nextflow/io/untar"
executable: "target/nextflow/io/untar/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
package_config:
name: "demultiplex"
version: "main"

View File

@@ -2989,9 +2989,9 @@ meta = [
"engine" : "docker|native",
"output" : "target/nextflow/io/untar",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",

View File

@@ -182,9 +182,9 @@ build_info:
output: "target/nextflow/runner"
executable: "target/nextflow/runner/main.nf"
viash_version: "0.9.0"
git_commit: "5c096fce4015435019d81e2cc524a478f4034adc"
git_remote: "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-10-g5c096fc"
git_commit: "45accaa50e52c6b29c78259995293789f345c80d"
git_remote: "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex"
git_tag: "v0.1.1-11-g45accaa"
dependencies:
- "target/nextflow/demultiplex"
- "target/nextflow/io/publish"

View File

@@ -3027,9 +3027,9 @@ meta = [
"engine" : "native|native",
"output" : "target/nextflow/runner",
"viash_version" : "0.9.0",
"git_commit" : "5c096fce4015435019d81e2cc524a478f4034adc",
"git_remote" : "https://x-access-token:ghs_dmJWFAeqmuLT7KwI3AQx37VetEueKn4JL2Vx@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-10-g5c096fc"
"git_commit" : "45accaa50e52c6b29c78259995293789f345c80d",
"git_remote" : "https://x-access-token:ghs_Yd3of90BXneMupSK4qIbEdGLmCGJet1c95Fo@github.com/viash-hub/demultiplex",
"git_tag" : "v0.1.1-11-g45accaa"
},
"package_config" : {
"name" : "demultiplex",