Skip to content

Commit

Permalink
chore(homer): Fix errors about unexpected input tuple size
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Jul 30, 2024
1 parent 73aad31 commit bce004d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion subworkflows/local/transcript_identification.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ workflow TRANSCRIPT_INDENTIFICATION {
homer_peaks = Channel.empty()
homer_tagdir = Channel.empty()
if(params.assay_type == "GROseq") {
HOMER_GROSEQ ( group_bam_bai, fasta )
group_bam = group_bam_bai.map { meta, bam, bai -> [meta, bam] }
HOMER_GROSEQ ( group_bam, fasta )
ch_identification_bed = ch_identification_bed.mix(HOMER_GROSEQ.out.bed)
homer_peaks = HOMER_GROSEQ.out.peaks
homer_tagdir = HOMER_GROSEQ.out.tagdir
Expand Down

0 comments on commit bce004d

Please sign in to comment.