Skip to content

Commit 9593e7f

Browse files
committed
Patch custom/getchromsizes module
1 parent b1f0470 commit 9593e7f

File tree

4 files changed

+34
-8
lines changed

4 files changed

+34
-8
lines changed

modules.json

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

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

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

subworkflows/local/prepare_genome.nf

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

135136
//

0 commit comments

Comments
 (0)