Skip to content

Commit a620172

Browse files
committed
Fix tests
1 parent d0d65f1 commit a620172

File tree

3 files changed

+3
-28
lines changed

3 files changed

+3
-28
lines changed

modules.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"custom/getchromsizes": {
2424
"branch": "master",
2525
"git_sha": "cf5b9c30a2adacc581793afb79fae5f5b50bed01",
26-
"installed_by": ["modules"],
27-
"patch": "modules/nf-core/custom/getchromsizes/custom-getchromsizes.diff"
26+
"installed_by": ["modules"]
2827
},
2928
"fastqc": {
3029
"branch": "master",

modules/nf-core/custom/getchromsizes/custom-getchromsizes.diff

Lines changed: 0 additions & 23 deletions
This file was deleted.

subworkflows/local/prepare_genome.nf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,8 @@ workflow PREPARE_GENOME {
128128
//
129129
// Create chromosome sizes file
130130
//
131-
CUSTOM_GETCHROMSIZES ( ch_fasta )
132-
ch_fai = CUSTOM_GETCHROMSIZES.out.fai
133-
ch_chrom_sizes = CUSTOM_GETCHROMSIZES.out.sizes
131+
ch_chrom_sizes = CUSTOM_GETCHROMSIZES ( [ [:], ch_fasta ] ).sizes.map{ it[1] }
132+
ch_fai = CUSTOM_GETCHROMSIZES.out.fai.map{ it[1] }
134133
ch_versions = ch_versions.mix(CUSTOM_GETCHROMSIZES.out.versions)
135134

136135
//

0 commit comments

Comments
 (0)