@@ -16,24 +16,6 @@ include { methodsDescriptionText } from '../local/utils_nfcore_datasync_pipeline
16
16
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
*/
18
18
19
- def splitChecksumFile(f, batchsize) {
20
- lines = []
21
- f. eachLine { line, index ->
22
- def parts = line. split(/ \s +/ )
23
- lines. add([parts[0 ], parts[1 ], String . format(' %06d' , (index % batchsize) + 1 )])
24
- }
25
- return lines. collate(batchsize)
26
- }
27
-
28
- def makeRenameScript(batch) {
29
- script = []
30
- script. add(" #!/bin/bash -euo pipefail" )
31
- script. add(" mkdir -p work" )
32
- batch. each { checksum, filename, index ->
33
- script. add(" mkdir -p work/\$ (dirname '${ filename} ') && mv files/${ index} 'work/${ filename} '" )
34
- }
35
- return script. join(" \n " )
36
- }
37
19
38
20
workflow CHECKSUM_VERIFY {
39
21
@@ -45,27 +27,21 @@ workflow CHECKSUM_VERIFY {
45
27
ch_versions = Channel . empty()
46
28
ch_multiqc_files = Channel . empty()
47
29
48
- ch_batches = ch_samplesheet. map{ meta, path, checksum_file ->
49
- splitChecksumFile(checksum_file, params. chunksize). withIndex(). collect {
50
- chunk, index -> [meta, chunk]
30
+ ch_chunks = ch_samplesheet. flatMap { meta, path, checksum_file ->
31
+ checksum_file. splitText( by : params. chunksize, file : true ). collect{ it -> [meta, path, it]}
32
+ }
33
+ SHA256SUM_CHECK (ch_chunks)
34
+
35
+ // collate reports from chunks
36
+ SHA256SUM_CHECK . out. report. collectFile(storeDir : " ${ params.outdir} /reports" ){ meta, report -> [" ${ meta.id} .report.txt" , report]}
37
+
38
+ // check if verification was sucessful (= all processes exited with code 0)
39
+ exit_codes = SHA256SUM_CHECK . out. exit_code. groupTuple(). map{ meta, exit_codes -> [meta, exit_codes. every{ it == " 0" }] }. map{
40
+ meta, status -> if (! status) {
41
+ log. warn(" Checksum verifycation failed for ${ meta.id} !" )
51
42
}
52
- }. flatMap { meta, chunk -> tuple(meta, chunk)}
53
- // ch_batches.view()
54
- ch_scripts = ch_batches. map{ meta, chunk -> [meta, makeRenameScript(chunk)] }
55
- // ch_scripts.view()
56
- ch_files = ch_batches. join(ch_samplesheet). map{ meta, chunk, path, checksum_file ->
57
- [meta, chunk. collect{ checksum , filename , idx -> file(" ${ path} /${ filename} " )}]
58
43
}
59
- ch_files. view()
60
- // ch_files = ch_batches.map{
61
- // meta, path, chunk -> chunk.each{
62
- // checksum, filename, numeric_id ->
63
- // files = []
64
- // files.add(file("${path}/${filename}", checkIfExists:true))
65
- // }
66
- // }
67
- // ch_files.view()
68
- // SHA256SUM_CHECK([[:], ["foo/test.txt", "foo/bar.txt"], [file("foo/test.txt"), file("foo/bar.txt")], []])
44
+
69
45
70
46
emit :
71
47
versions = ch_versions // channel: [ path(versions.yml) ]
0 commit comments