Skip to content

Commit

Permalink
correct merging error
Browse files Browse the repository at this point in the history
  • Loading branch information
ftabaro committed Nov 28, 2024
1 parent 705797c commit 1bd251d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subworkflows/local/prepare_genome.nf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ workflow PREPARE_GENOME {
ch_gff = GUNZIP_GFF([[:], file(gff, checkIfExists: true)]).gunzip.map { it[1] }
ch_versions = ch_versions.mix(GUNZIP_GFF.out.versions).map { [ [:], it ] }
} else {
ch_gff = Channel.value(file(gff, checkIfExists: true))
ch_gff = Channel.value(file(gff, checkIfExists: true)).map{ [ [:], it ] }
}

ch_gtf = GFFREAD(ch_gff, []).gtf.map { it[1] }
Expand Down

0 comments on commit 1bd251d

Please sign in to comment.