diff --git a/modules/nf-core/hlala/preparegraph/main.nf b/modules/nf-core/hlala/preparegraph/main.nf index e9ccaee85e43..68e70afceff2 100644 --- a/modules/nf-core/hlala/preparegraph/main.nf +++ b/modules/nf-core/hlala/preparegraph/main.nf @@ -13,7 +13,7 @@ process HLALA_PREPAREGRAPH { output: tuple val(meta), path("${graph}") , emit: graph - path "versions.yml", emit: versions + tuple val("${task.process}"), val('hla-la'), eval('echo 1.0.4'), emit: versions_hlala, topic: versions when: task.ext.when == null || task.ext.when @@ -30,11 +30,6 @@ process HLALA_PREPAREGRAPH { ${bin} \\ --action prepareGraph \\ --PRG_graph_dir $graph - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - hlala: 1.0.3 - END_VERSIONS """ stub: @@ -76,10 +71,5 @@ process HLALA_PREPAREGRAPH { touch ${graph}/PRG/graph.txt touch ${graph}/PRG/segments.txt touch ${graph}/PRG/positions.txt - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - hlala: 1.0.3 - END_VERSIONS """ } diff --git a/modules/nf-core/hlala/preparegraph/meta.yml b/modules/nf-core/hlala/preparegraph/meta.yml index bdda99965074..fb3833424a3e 100644 --- a/modules/nf-core/hlala/preparegraph/meta.yml +++ b/modules/nf-core/hlala/preparegraph/meta.yml @@ -33,13 +33,27 @@ output: - ${graph}: type: directory description: PRG graph directory + versions_hlala: + - - ${task.process}: + type: string + description: The process the versions were collected from + - hla-la: + type: string + description: The name of the tool + - echo 1.0.4: + type: eval + description: The expression to obtain the version of the tool +topics: versions: - - versions.yml: - type: file - description: File containing software versions - pattern: "versions.yml" - ontologies: - - edam: http://edamontology.org/format_3750 # YAML + - - ${task.process}: + type: string + description: The process the versions were collected from + - hla-la: + type: string + description: The name of the tool + - echo 1.0.4: + type: eval + description: The expression to obtain the version of the tool authors: - "@mapo9" maintainers: diff --git a/modules/nf-core/hlala/preparegraph/tests/main.nf.test.snap b/modules/nf-core/hlala/preparegraph/tests/main.nf.test.snap index f9822270656e..c649d88804e5 100644 --- a/modules/nf-core/hlala/preparegraph/tests/main.nf.test.snap +++ b/modules/nf-core/hlala/preparegraph/tests/main.nf.test.snap @@ -58,7 +58,11 @@ ] ], "1": [ - "versions.yml:md5,9c44ff8e47df418f82531b71b9613945" + [ + "HLALA_PREPAREGRAPH", + "hla-la", + "1.0.4" + ] ], "graph": [ [ @@ -115,16 +119,20 @@ ] ] ], - "versions": [ - "versions.yml:md5,9c44ff8e47df418f82531b71b9613945" + "versions_hlala": [ + [ + "HLALA_PREPAREGRAPH", + "hla-la", + "1.0.4" + ] ] } ], "meta": { - "nf-test": "0.9.2", - "nextflow": "24.10.3" + "nf-test": "0.9.3", + "nextflow": "25.10.3" }, - "timestamp": "2025-03-26T10:50:19.125173" + "timestamp": "2026-04-23T20:25:20.521118567" }, "homo_sapiens - prg": { "content": [ @@ -170,7 +178,6 @@ "hlala/PRG_test/serializedGRAPH_preGapPathIndex", "hlala/PRG_test/translation", "hlala/PRG_test/translation/100.txt", - "hlala/versions.yml", "unzip", "unzip/test", "unzip/test/PRG_test", @@ -236,7 +243,6 @@ "serializedGRAPH:md5,a88016a601377a967feb04c1bbeeba65", "serializedGRAPH_preGapPathIndex:md5,65ea9cd52a00ffd51a2460c6887b277e", "100.txt:md5,8dd91725d9a2f1f71a82ae1d190aa840", - "versions.yml:md5,f1108f072a11ccc5a063bf17a78ecd2d", ".nextflow.log:md5,f22b6ca679424bea221fe100b4162b4a", "100_gene_HLA-A_9_exon_5.txt:md5,fa4f97441bdd999f3ada1a49e67b726b", "100_gene_HLA-A_9_exon_5.txt.graph:md5,0c5532614ffa94e30321c521e5a5046e", @@ -261,9 +267,9 @@ ] ], "meta": { - "nf-test": "0.9.2", - "nextflow": "24.10.3" + "nf-test": "0.9.3", + "nextflow": "25.10.3" }, - "timestamp": "2025-03-26T10:50:11.256875" + "timestamp": "2026-04-23T20:24:57.389656201" } } \ No newline at end of file diff --git a/modules/nf-core/hlala/typing/main.nf b/modules/nf-core/hlala/typing/main.nf index 4e25762be766..99d72a8628e3 100644 --- a/modules/nf-core/hlala/typing/main.nf +++ b/modules/nf-core/hlala/typing/main.nf @@ -21,7 +21,7 @@ process HLALA_TYPING { tuple val(meta), path("results/reads_per_level.txt") , emit: reads_per_level tuple val(meta), path("results/remapped_with_a.bam") , emit: remapped tuple val(meta), path("results/remapped_with_a.bam.bai") , emit: remapped_index - path "versions.yml" , emit: versions + tuple val("${task.process}"), val('hla-la'), eval('echo 1.0.4'), emit: versions_hlala, topic: versions when: task.ext.when == null || task.ext.when @@ -29,7 +29,6 @@ process HLALA_TYPING { script: def args = task.ext.args ?: '' def prefix = task.ext.prefix ?: "${meta.id}" - def VERSION = '1.0.4' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions. def bin = "" if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) { @@ -47,17 +46,10 @@ process HLALA_TYPING { --maxThreads $task.cpus \\ $args - mkdir -p results - mv ${prefix}/ results/ - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - hla-la: ${VERSION} - END_VERSIONS + mv ${prefix} results """ stub: - def VERSION = '1.0.4' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions. """ mkdir -p results @@ -146,10 +138,5 @@ process HLALA_TYPING { touch results/hla/R1_readIDs_K.txt touch results/hla/R1_readIDs_V.txt touch results/hla/summaryStatistics.txt - - cat <<-END_VERSIONS > versions.yml - "${task.process}": - hla-la: ${VERSION} - END_VERSIONS """ } diff --git a/modules/nf-core/hlala/typing/meta.yml b/modules/nf-core/hlala/typing/meta.yml index c5a2cbb8f194..5349682cd477 100644 --- a/modules/nf-core/hlala/typing/meta.yml +++ b/modules/nf-core/hlala/typing/meta.yml @@ -144,13 +144,27 @@ output: description: Remapped BAM index file pattern: "*.bam.bai" ontologies: [] + versions_hlala: + - - ${task.process}: + type: string + description: The process the versions were collected from + - hla-la: + type: string + description: The name of the tool + - echo 1.0.4: + type: eval + description: The expression to obtain the version of the tool +topics: versions: - - versions.yml: - type: file - description: File containing software versions - pattern: "versions.yml" - ontologies: - - edam: http://edamontology.org/format_3750 # YAML + - - ${task.process}: + type: string + description: The process the versions were collected from + - hla-la: + type: string + description: The name of the tool + - echo 1.0.4: + type: eval + description: The expression to obtain the version of the tool authors: - "@mapo9" maintainers: diff --git a/modules/nf-core/hlala/typing/tests/main.nf.test b/modules/nf-core/hlala/typing/tests/main.nf.test index 5ce016517626..dc46c9175261 100644 --- a/modules/nf-core/hlala/typing/tests/main.nf.test +++ b/modules/nf-core/hlala/typing/tests/main.nf.test @@ -99,10 +99,7 @@ nextflow_process { then { assertAll( { assert process.success }, - { assert snapshot( - process.out, - path(process.out.versions[0]).yaml - ).match() } + { assert snapshot(process.out).match() } ) } } diff --git a/modules/nf-core/hlala/typing/tests/main.nf.test.snap b/modules/nf-core/hlala/typing/tests/main.nf.test.snap index 20156aecf687..d0f22f3e34f4 100644 --- a/modules/nf-core/hlala/typing/tests/main.nf.test.snap +++ b/modules/nf-core/hlala/typing/tests/main.nf.test.snap @@ -1,138 +1,4 @@ { - "homo_sapiens - cram bai graph": { - "content": [ - [ - "versions.yml:md5,15a7d7b635ae0a3e3d5805b7aa00594e" - ], - "4896d6f9116ae911d0ca0b9470f494c3", - [ - [ - { - "id": "test" - }, - "extraction.bam.bai:md5,052a964cdc38cabdd899b0c18ffda7c1" - ] - ], - "a1133c123cfa78df2d1e334de5a55015", - "97de6160bc47d8178aea1eacd1d4cc02", - [ - [ - { - "id": "test" - }, - [ - "R1_PP_A_pairs.txt:md5,028d6b967e67a33e5ca9f4278ff84529", - "R1_PP_B_pairs.txt:md5,8547d792e6f967cbbdd0f246d3ed76a0", - "R1_PP_C_pairs.txt:md5,b5c500284f97ac5b478de687a61b6fad", - "R1_PP_DPA1_pairs.txt:md5,7861ef796ac5e26a6f591f87bd7b12bb", - "R1_PP_DPB1_pairs.txt:md5,218dd810b53b97bc16a6eed62c441eeb", - "R1_PP_DQA1_pairs.txt:md5,393c20e54fe8f612079b8cb16286e45b", - "R1_PP_DQB1_pairs.txt:md5,182d33538312cfdfc5f555fa3f9c4063", - "R1_PP_DRA_pairs.txt:md5,60eec214cac4f74fe2d9910bdeb392dd", - "R1_PP_DRB1_pairs.txt:md5,250323162d4f2bde007eae297337aea4", - "R1_PP_DRB3_pairs.txt:md5,d42a15c6edd8aece48a81e7840871984", - "R1_PP_DRB4_pairs.txt:md5,41020a544ff7b033beaec9634c30705a", - "R1_PP_E_pairs.txt:md5,1fa1555add592bbdbbd237ea66943bfe", - "R1_PP_F_pairs.txt:md5,577702e182398f6a27b956c201e0e1fe", - "R1_PP_G_pairs.txt:md5,1ab4cf022a405a9c212c03feaf2794d2", - "R1_PP_H_pairs.txt:md5,a569fca89956471985b78c7f9227ef3e", - "R1_PP_K_pairs.txt:md5,2ad0d4a08aea44d658f270e9f9567b75", - "R1_PP_V_pairs.txt:md5,abe2b04e46d514fe005ef577271dc3cc", - "R1_bestguess.txt:md5,42a1953376ea13d060e0d1ffafb1a680", - "R1_bestguess_G.txt:md5,cbf2995855ce1603eb56126156e29d1e", - "R1_columnIncompatibilities_A.txt:md5,be5105cb8ae3d0aa0b1e9013e6f68f82", - "R1_columnIncompatibilities_B.txt:md5,fd0cb44777f50b078cfa568a8d7ae345", - "R1_columnIncompatibilities_C.txt:md5,c38c180a9cd8e48be3db0f9945e38195", - "R1_columnIncompatibilities_DPA1.txt:md5,d1421647ceba96c81c2e4529dc41118a", - "R1_columnIncompatibilities_DPB1.txt:md5,4c7c013602f0602120202dace722eaaa", - "R1_columnIncompatibilities_DQA1.txt:md5,71554f91ff04abfb6700ffb9862206bf", - "R1_columnIncompatibilities_DQB1.txt:md5,b42034342785683ccfd71cb58fab8b79", - "R1_columnIncompatibilities_DRA.txt:md5,146bc2a093a4537bf3ad4f417fb430bc", - "R1_columnIncompatibilities_DRB1.txt:md5,890ea396b73a28ae6b1a380ea8bf7fc8", - "R1_columnIncompatibilities_DRB3.txt:md5,9b39dcae8ea002101b2b0cdec4282bd1", - "R1_columnIncompatibilities_DRB4.txt:md5,c8cbbb9af9fdea670b8055d1d93a7b06", - "R1_columnIncompatibilities_E.txt:md5,94d5b4b982c97165a7d428e5d07ad3cd", - "R1_columnIncompatibilities_F.txt:md5,0425a4304c94a9e468a59bafeeabdcd4", - "R1_columnIncompatibilities_G.txt:md5,589617c3d55468b2990969b3e6615507", - "R1_columnIncompatibilities_H.txt:md5,21eaaec9dc465f972aefa23813e25846", - "R1_columnIncompatibilities_K.txt:md5,27e1ac019bc39a60906620bdd9aeb7df", - "R1_columnIncompatibilities_V.txt:md5,922b4044fdbbc9c84c001673f686f456", - "R1_parameters.txt:md5,33a6e4e4df260f6dd541f55a3b7903d9", - "R1_pileup_A.txt:md5,7f70848fff98e040409356f736dcb517", - "R1_pileup_B.txt:md5,150b7a6318ee98e6e92c81ffd324472c", - "R1_pileup_C.txt:md5,8bcd87bd739bd037ef8ce5b07b895a3f", - "R1_pileup_DPA1.txt:md5,8d2f208773906ebc3ee01d2402bf8212", - "R1_pileup_DPB1.txt:md5,c9306fbc985c3d6d17e2f8c446174d18", - "R1_pileup_DQA1.txt:md5,b07369bc6ccc0c6e959c5d6209416ac1", - "R1_pileup_DQB1.txt:md5,185e9a1e9832d1bf9728ed52051b43e8", - "R1_pileup_DRA.txt:md5,ef5ac38875c38edfdf506d4afbd94eb6", - "R1_pileup_DRB1.txt:md5,5d4379e1dd107bfbf0fdbcc20625928a", - "R1_pileup_DRB3.txt:md5,9494268ff6fb0f560458f4d0c263c903", - "R1_pileup_DRB4.txt:md5,cc19d8e8774a92fbbb0dd45bdb60f625", - "R1_pileup_E.txt:md5,fbd1dfd0be412505f1eb95aa4fc06586", - "R1_pileup_F.txt:md5,b0ecac311c70b3b37434c80125913b7a", - "R1_pileup_G.txt:md5,e0a65200a51e2b40737dee8873704302", - "R1_pileup_H.txt:md5,307644c4f412265a88398de0135208e2", - "R1_pileup_K.txt:md5,84f608d3175cc093e80b0f68b51d90c2", - "R1_pileup_V.txt:md5,e1308b2721e81d46e8277a5da2b6c4f2", - "R1_readIDs_A.txt:md5,bcc2546cc5d69337d3964a0750c04727", - "R1_readIDs_B.txt:md5,df01e6d2c1c9094597d293fc2be2ffcf", - "R1_readIDs_C.txt:md5,a48640796d369422bf192389ad86e464", - "R1_readIDs_DPA1.txt:md5,30e4496305c3df915c9da5a5f24b7900", - "R1_readIDs_DPB1.txt:md5,3e3079ac361e5183e1d23ed94373e5b1", - "R1_readIDs_DQA1.txt:md5,1bb2b34757d6968043b15c7654a9ce65", - "R1_readIDs_DQB1.txt:md5,082151c0f1b0b0eb5e7a3510e7e35be7", - "R1_readIDs_DRA.txt:md5,d608075cde7e9ea3cd4fe79706d0a6fc", - "R1_readIDs_DRB1.txt:md5,71e62e469c0428cf41a73baefd4e8286", - "R1_readIDs_DRB3.txt:md5,df9950941f76f548bc26d2f7dc8c1241", - "R1_readIDs_DRB4.txt:md5,4a3210a501d34983769c1cd6069c8179", - "R1_readIDs_E.txt:md5,0bed2987a5c71424c3119dd13d5aed8a", - "R1_readIDs_F.txt:md5,956230509b27a07446d154b89be4cb39", - "R1_readIDs_G.txt:md5,e502b2f2a3a30b2719d0e70f616bd2b6", - "R1_readIDs_H.txt:md5,6aa95d996de89ed729e16d2c125f6e73", - "R1_readIDs_K.txt:md5,375800915f6ffa0f40e0be5f98881977", - "R1_readIDs_V.txt:md5,a19d7ff037efa00a8d57f5e6682de315", - "histogram_matchesPerRead.txt:md5,ca4664ab3f82f2bd8698305611798758", - "summaryStatistics.txt:md5,e6ca2afdb05775764281b660318f8168" - ] - ] - ], - [ - [ - { - "id": "test" - }, - [ - "R_1.fastq:md5,3233d45a8caa9bf0f138a164c0f2623d", - "R_2.fastq:md5,11465f4285611695a3af6ef46fe1c97c", - "R_U.fastq" - ] - ] - ], - [ - [ - { - "id": "test" - }, - "reads_per_level.txt:md5,e4055d63e0a41eb14c4af85d21895190" - ] - ], - "7d852911edc6b7af0e75421cc59b9823", - [ - [ - { - "id": "test" - }, - "remapped_with_a.bam.bai:md5,38211125c9d39c23baf3bd052443604a" - ] - ] - ], - "meta": { - "nf-test": "0.8.4", - "nextflow": "24.10.5" - }, - "timestamp": "2025-04-16T01:30:23.88828548" - }, "homo_sapiens - cram bai graph -- stub": { "content": [ { @@ -239,7 +105,11 @@ ] ], "10": [ - "versions.yml:md5,15a7d7b635ae0a3e3d5805b7aa00594e" + [ + "HLALA_TYPING", + "hla-la", + "1.0.4" + ] ], "2": [ [ @@ -627,20 +497,153 @@ ] ] ], - "versions": [ - "versions.yml:md5,15a7d7b635ae0a3e3d5805b7aa00594e" + "versions_hlala": [ + [ + "HLALA_TYPING", + "hla-la", + "1.0.4" + ] ] - }, - { - "HLALA_TYPING": { - "hla-la": "1.0.4" - } } ], + "meta": { + "nf-test": "0.9.3", + "nextflow": "25.10.3" + }, + "timestamp": "2026-04-23T20:25:44.02308082" + }, + "homo_sapiens - cram bai graph": { + "content": [ + [ + "versions.yml:md5,15a7d7b635ae0a3e3d5805b7aa00594e" + ], + "4896d6f9116ae911d0ca0b9470f494c3", + [ + [ + { + "id": "test" + }, + "extraction.bam.bai:md5,052a964cdc38cabdd899b0c18ffda7c1" + ] + ], + "a1133c123cfa78df2d1e334de5a55015", + "97de6160bc47d8178aea1eacd1d4cc02", + [ + [ + { + "id": "test" + }, + [ + "R1_PP_A_pairs.txt:md5,028d6b967e67a33e5ca9f4278ff84529", + "R1_PP_B_pairs.txt:md5,8547d792e6f967cbbdd0f246d3ed76a0", + "R1_PP_C_pairs.txt:md5,b5c500284f97ac5b478de687a61b6fad", + "R1_PP_DPA1_pairs.txt:md5,7861ef796ac5e26a6f591f87bd7b12bb", + "R1_PP_DPB1_pairs.txt:md5,218dd810b53b97bc16a6eed62c441eeb", + "R1_PP_DQA1_pairs.txt:md5,393c20e54fe8f612079b8cb16286e45b", + "R1_PP_DQB1_pairs.txt:md5,182d33538312cfdfc5f555fa3f9c4063", + "R1_PP_DRA_pairs.txt:md5,60eec214cac4f74fe2d9910bdeb392dd", + "R1_PP_DRB1_pairs.txt:md5,250323162d4f2bde007eae297337aea4", + "R1_PP_DRB3_pairs.txt:md5,d42a15c6edd8aece48a81e7840871984", + "R1_PP_DRB4_pairs.txt:md5,41020a544ff7b033beaec9634c30705a", + "R1_PP_E_pairs.txt:md5,1fa1555add592bbdbbd237ea66943bfe", + "R1_PP_F_pairs.txt:md5,577702e182398f6a27b956c201e0e1fe", + "R1_PP_G_pairs.txt:md5,1ab4cf022a405a9c212c03feaf2794d2", + "R1_PP_H_pairs.txt:md5,a569fca89956471985b78c7f9227ef3e", + "R1_PP_K_pairs.txt:md5,2ad0d4a08aea44d658f270e9f9567b75", + "R1_PP_V_pairs.txt:md5,abe2b04e46d514fe005ef577271dc3cc", + "R1_bestguess.txt:md5,42a1953376ea13d060e0d1ffafb1a680", + "R1_bestguess_G.txt:md5,cbf2995855ce1603eb56126156e29d1e", + "R1_columnIncompatibilities_A.txt:md5,be5105cb8ae3d0aa0b1e9013e6f68f82", + "R1_columnIncompatibilities_B.txt:md5,fd0cb44777f50b078cfa568a8d7ae345", + "R1_columnIncompatibilities_C.txt:md5,c38c180a9cd8e48be3db0f9945e38195", + "R1_columnIncompatibilities_DPA1.txt:md5,d1421647ceba96c81c2e4529dc41118a", + "R1_columnIncompatibilities_DPB1.txt:md5,4c7c013602f0602120202dace722eaaa", + "R1_columnIncompatibilities_DQA1.txt:md5,71554f91ff04abfb6700ffb9862206bf", + "R1_columnIncompatibilities_DQB1.txt:md5,b42034342785683ccfd71cb58fab8b79", + "R1_columnIncompatibilities_DRA.txt:md5,146bc2a093a4537bf3ad4f417fb430bc", + "R1_columnIncompatibilities_DRB1.txt:md5,890ea396b73a28ae6b1a380ea8bf7fc8", + "R1_columnIncompatibilities_DRB3.txt:md5,9b39dcae8ea002101b2b0cdec4282bd1", + "R1_columnIncompatibilities_DRB4.txt:md5,c8cbbb9af9fdea670b8055d1d93a7b06", + "R1_columnIncompatibilities_E.txt:md5,94d5b4b982c97165a7d428e5d07ad3cd", + "R1_columnIncompatibilities_F.txt:md5,0425a4304c94a9e468a59bafeeabdcd4", + "R1_columnIncompatibilities_G.txt:md5,589617c3d55468b2990969b3e6615507", + "R1_columnIncompatibilities_H.txt:md5,21eaaec9dc465f972aefa23813e25846", + "R1_columnIncompatibilities_K.txt:md5,27e1ac019bc39a60906620bdd9aeb7df", + "R1_columnIncompatibilities_V.txt:md5,922b4044fdbbc9c84c001673f686f456", + "R1_parameters.txt:md5,33a6e4e4df260f6dd541f55a3b7903d9", + "R1_pileup_A.txt:md5,7f70848fff98e040409356f736dcb517", + "R1_pileup_B.txt:md5,150b7a6318ee98e6e92c81ffd324472c", + "R1_pileup_C.txt:md5,8bcd87bd739bd037ef8ce5b07b895a3f", + "R1_pileup_DPA1.txt:md5,8d2f208773906ebc3ee01d2402bf8212", + "R1_pileup_DPB1.txt:md5,c9306fbc985c3d6d17e2f8c446174d18", + "R1_pileup_DQA1.txt:md5,b07369bc6ccc0c6e959c5d6209416ac1", + "R1_pileup_DQB1.txt:md5,185e9a1e9832d1bf9728ed52051b43e8", + "R1_pileup_DRA.txt:md5,ef5ac38875c38edfdf506d4afbd94eb6", + "R1_pileup_DRB1.txt:md5,5d4379e1dd107bfbf0fdbcc20625928a", + "R1_pileup_DRB3.txt:md5,9494268ff6fb0f560458f4d0c263c903", + "R1_pileup_DRB4.txt:md5,cc19d8e8774a92fbbb0dd45bdb60f625", + "R1_pileup_E.txt:md5,fbd1dfd0be412505f1eb95aa4fc06586", + "R1_pileup_F.txt:md5,b0ecac311c70b3b37434c80125913b7a", + "R1_pileup_G.txt:md5,e0a65200a51e2b40737dee8873704302", + "R1_pileup_H.txt:md5,307644c4f412265a88398de0135208e2", + "R1_pileup_K.txt:md5,84f608d3175cc093e80b0f68b51d90c2", + "R1_pileup_V.txt:md5,e1308b2721e81d46e8277a5da2b6c4f2", + "R1_readIDs_A.txt:md5,bcc2546cc5d69337d3964a0750c04727", + "R1_readIDs_B.txt:md5,df01e6d2c1c9094597d293fc2be2ffcf", + "R1_readIDs_C.txt:md5,a48640796d369422bf192389ad86e464", + "R1_readIDs_DPA1.txt:md5,30e4496305c3df915c9da5a5f24b7900", + "R1_readIDs_DPB1.txt:md5,3e3079ac361e5183e1d23ed94373e5b1", + "R1_readIDs_DQA1.txt:md5,1bb2b34757d6968043b15c7654a9ce65", + "R1_readIDs_DQB1.txt:md5,082151c0f1b0b0eb5e7a3510e7e35be7", + "R1_readIDs_DRA.txt:md5,d608075cde7e9ea3cd4fe79706d0a6fc", + "R1_readIDs_DRB1.txt:md5,71e62e469c0428cf41a73baefd4e8286", + "R1_readIDs_DRB3.txt:md5,df9950941f76f548bc26d2f7dc8c1241", + "R1_readIDs_DRB4.txt:md5,4a3210a501d34983769c1cd6069c8179", + "R1_readIDs_E.txt:md5,0bed2987a5c71424c3119dd13d5aed8a", + "R1_readIDs_F.txt:md5,956230509b27a07446d154b89be4cb39", + "R1_readIDs_G.txt:md5,e502b2f2a3a30b2719d0e70f616bd2b6", + "R1_readIDs_H.txt:md5,6aa95d996de89ed729e16d2c125f6e73", + "R1_readIDs_K.txt:md5,375800915f6ffa0f40e0be5f98881977", + "R1_readIDs_V.txt:md5,a19d7ff037efa00a8d57f5e6682de315", + "histogram_matchesPerRead.txt:md5,ca4664ab3f82f2bd8698305611798758", + "summaryStatistics.txt:md5,e6ca2afdb05775764281b660318f8168" + ] + ] + ], + [ + [ + { + "id": "test" + }, + [ + "R_1.fastq:md5,3233d45a8caa9bf0f138a164c0f2623d", + "R_2.fastq:md5,11465f4285611695a3af6ef46fe1c97c", + "R_U.fastq" + ] + ] + ], + [ + [ + { + "id": "test" + }, + "reads_per_level.txt:md5,e4055d63e0a41eb14c4af85d21895190" + ] + ], + "7d852911edc6b7af0e75421cc59b9823", + [ + [ + { + "id": "test" + }, + "remapped_with_a.bam.bai:md5,38211125c9d39c23baf3bd052443604a" + ] + ] + ], "meta": { "nf-test": "0.8.4", "nextflow": "24.10.5" }, - "timestamp": "2025-04-15T16:04:37.27101156" + "timestamp": "2025-04-16T01:30:23.88828548" } } \ No newline at end of file