Skip to content

Commit 5e69d6b

Browse files
committed
fix: conda profile by removing md5 check for bam.csi output
1 parent b27f53c commit 5e69d6b

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

modules/nf-core/gridss/preprocess/meta.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ description: Run the preprocess step of GRIDSS to extract multiple Picard
55
keywords:
66
- gridss
77
- preprocess
8-
- picard metrics
98
- structural variants
109
- bam
1110
tools:

modules/nf-core/gridss/preprocess/tests/main.nf.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ nextflow_process {
5050
def workdir = process.out.preprocess_dir[0][1]
5151
def prefix = "test.paired_end.sorted.bam"
5252
// Picard `# Started on:` and R's PDF `/CreationDate` add per-run timestamps,
53-
// and `sv.bam` BGZF blocks are non-reproducible — snapshot only stable parts.
53+
// and `sv.bam`/`sv.bam.csi` BGZF blocks differ across conda/docker — snapshot only stable parts.
54+
// Presence of `sv.bam` and `sv.bam.csi` is covered by the directory listing snapshot.
5455
def stripPicardHeaderMd5 = { f -> "${file(f).name}:md5,${listToMD5(path(f).readLines().findAll { !it.startsWith("#") })}" }
5556

5657
assertAll(
@@ -59,7 +60,6 @@ nextflow_process {
5960
process.out.preprocess_dir.collect { meta, dir -> [meta, file(dir).list().findAll { it.startsWith(prefix) }.sort()] },
6061
path("${workdir}/${prefix}.computesamtags.changes.tsv"),
6162
path("${workdir}/${prefix}.coverage.blacklist.bed"),
62-
path("${workdir}/${prefix}.sv.bam.csi"),
6363
stripPicardHeaderMd5("${workdir}/${prefix}.cigar_metrics"),
6464
stripPicardHeaderMd5("${workdir}/${prefix}.idsv_metrics"),
6565
stripPicardHeaderMd5("${workdir}/${prefix}.insert_size_metrics"),

modules/nf-core/gridss/preprocess/tests/main.nf.test.snap

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
]
3131
}
3232
],
33-
"timestamp": "2026-06-12T12:49:58.032375609",
33+
"timestamp": "2026-06-12T14:30:07.433688807",
3434
"meta": {
3535
"nf-test": "0.9.4",
36-
"nextflow": "25.10.4"
36+
"nextflow": "26.04.3"
3737
}
3838
},
3939
"human - bam - bwa": {
@@ -59,7 +59,6 @@
5959
],
6060
"test.paired_end.sorted.bam.computesamtags.changes.tsv:md5,ce0a87ccee35f990cd878e12a8a84bae",
6161
"test.paired_end.sorted.bam.coverage.blacklist.bed:md5,63a1da1606bf23357ad6b1b166c21651",
62-
"test.paired_end.sorted.bam.sv.bam.csi:md5,cc1f8720e292f8470b608d7ae9547311",
6362
"test.paired_end.sorted.bam.cigar_metrics:md5,29b9a700b9da9f2cb23e199e8c15af31",
6463
"test.paired_end.sorted.bam.idsv_metrics:md5,eeee010100dcea8b9f9eeeac44f8d142",
6564
"test.paired_end.sorted.bam.insert_size_metrics:md5,4a7d860f1073a82c093373bdbdbd6bf3",
@@ -75,10 +74,10 @@
7574
]
7675
}
7776
],
78-
"timestamp": "2026-06-12T12:49:48.647470086",
77+
"timestamp": "2026-06-12T14:29:56.150511142",
7978
"meta": {
8079
"nf-test": "0.9.4",
81-
"nextflow": "25.10.4"
80+
"nextflow": "26.04.3"
8281
}
8382
}
8483
}

0 commit comments

Comments
 (0)