Build branch main with version main (55699d2)
Build pipeline: viash-hub.demultiplex.main-z5mvc
Source commit: 55699d24c0
Source message: Allow letter case variations in run information CSV (#38)
This commit is contained in:
@@ -162,9 +162,9 @@ build_info:
|
||||
output: "target/nextflow/dataflow/combine_samples"
|
||||
executable: "target/nextflow/dataflow/combine_samples/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "795abd68688f4f31b0587bc8e4a7de49b6c00825"
|
||||
git_commit: "55699d24c0ff8d88e572ccc1a5ebc40217bb9524"
|
||||
git_remote: "https://github.com/viash-hub/demultiplex"
|
||||
git_tag: "v0.1.1-18-g795abd6"
|
||||
git_tag: "v0.1.1-19-g55699d2"
|
||||
package_config:
|
||||
name: "demultiplex"
|
||||
version: "main"
|
||||
|
||||
@@ -3000,9 +3000,9 @@ meta = [
|
||||
"engine" : "native|native",
|
||||
"output" : "target/nextflow/dataflow/combine_samples",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "795abd68688f4f31b0587bc8e4a7de49b6c00825",
|
||||
"git_commit" : "55699d24c0ff8d88e572ccc1a5ebc40217bb9524",
|
||||
"git_remote" : "https://github.com/viash-hub/demultiplex",
|
||||
"git_tag" : "v0.1.1-18-g795abd6"
|
||||
"git_tag" : "v0.1.1-19-g55699d2"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "demultiplex",
|
||||
|
||||
@@ -138,9 +138,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: "795abd68688f4f31b0587bc8e4a7de49b6c00825"
|
||||
git_commit: "55699d24c0ff8d88e572ccc1a5ebc40217bb9524"
|
||||
git_remote: "https://github.com/viash-hub/demultiplex"
|
||||
git_tag: "v0.1.1-18-g795abd6"
|
||||
git_tag: "v0.1.1-19-g55699d2"
|
||||
package_config:
|
||||
name: "demultiplex"
|
||||
version: "main"
|
||||
|
||||
@@ -2973,9 +2973,9 @@ meta = [
|
||||
"engine" : "native|native",
|
||||
"output" : "target/nextflow/dataflow/gather_fastqs_and_validate",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "795abd68688f4f31b0587bc8e4a7de49b6c00825",
|
||||
"git_commit" : "55699d24c0ff8d88e572ccc1a5ebc40217bb9524",
|
||||
"git_remote" : "https://github.com/viash-hub/demultiplex",
|
||||
"git_tag" : "v0.1.1-18-g795abd6"
|
||||
"git_tag" : "v0.1.1-19-g55699d2"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "demultiplex",
|
||||
@@ -3051,8 +3051,8 @@ workflow run_wf {
|
||||
return true
|
||||
}
|
||||
// [Data], [BCLConvert_Data] for illumina
|
||||
// [Samples] for Element Biosciences
|
||||
if (header in ["Data", "Samples", "BCLConvert_Data"]) {
|
||||
// [Samples] or sometimes [SAMPLES] for Element Biosciences
|
||||
if (header.toLowerCase() in ["data", "samples", "bclconvert_data"]) {
|
||||
println "Found header [${header}], start parsing."
|
||||
start_parsing = true
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user