Skip to content

Commit

Permalink
bugfix: the value is in the second element (the first one is meta)
Browse files Browse the repository at this point in the history
  • Loading branch information
muffato committed Jul 17, 2024
1 parent 8875267 commit 353325b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions subworkflows/local/accessory_files.nf
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ workflow ACCESSORY_FILES {
//
GAP_FINDER (
reference_tuple,
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[0].toInteger()}
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[1].toInteger()}
)
ch_versions = ch_versions.mix(GAP_FINDER.out.versions)

//
// SUBWORKFLOW: GENERATE TELOMERE WINDOW FILES WITH LONGREAD READS AND REFERENCE
//
TELO_FINDER (
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[0].toInteger()},
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[1].toInteger()},
reference_tuple,
params.teloseq
)
Expand Down Expand Up @@ -93,4 +93,4 @@ workflow ACCESSORY_FILES {
half_bed = LONGREAD_COVERAGE.out.ch_halfbed
maxs_bed = LONGREAD_COVERAGE.out.ch_maxbed
versions = ch_versions.ifEmpty(null)
}
}

0 comments on commit 353325b

Please sign in to comment.