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:
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user