Skip to content

Commit cbd5201

Browse files
committed
Restore output comments
1 parent d6ef689 commit cbd5201

File tree

1 file changed

+16
-16
lines changed
  • subworkflows/local/prepare_genome

1 file changed

+16
-16
lines changed

subworkflows/local/prepare_genome/main.nf

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -407,20 +407,20 @@ workflow PREPARE_GENOME {
407407
// 16) Emit channels
408408
//------------------
409409
emit:
410-
fasta = ch_fasta
411-
gtf = ch_gtf
412-
fai = ch_fai
413-
gene_bed = ch_gene_bed
414-
transcript_fasta = ch_transcript_fasta
415-
chrom_sizes = ch_chrom_sizes
416-
splicesites = ch_splicesites
417-
bbsplit_index = ch_bbsplit_index
418-
rrna_fastas = ch_rrna_fastas
419-
sortmerna_index = ch_sortmerna_index
420-
star_index = ch_star_index
421-
rsem_index = ch_rsem_index
422-
hisat2_index = ch_hisat2_index
423-
salmon_index = ch_salmon_index
424-
kallisto_index = ch_kallisto_index
425-
versions = ch_versions.ifEmpty(null)
410+
fasta = ch_fasta // channel: path(genome.fasta)
411+
gtf = ch_gtf // channel: path(genome.gtf)
412+
fai = ch_fai // channel: path(genome.fai)
413+
gene_bed = ch_gene_bed // channel: path(gene.bed)
414+
transcript_fasta = ch_transcript_fasta // channel: path(transcript.fasta)
415+
chrom_sizes = ch_chrom_sizes // channel: path(genome.sizes)
416+
splicesites = ch_splicesites // channel: path(genome.splicesites.txt)
417+
bbsplit_index = ch_bbsplit_index // channel: path(bbsplit/index/)
418+
rrna_fastas = ch_rrna_fastas // channel: path(sortmerna_fasta_list)
419+
sortmerna_index = ch_sortmerna_index // channel: path(sortmerna/index/)
420+
star_index = ch_star_index // channel: path(star/index/)
421+
rsem_index = ch_rsem_index // channel: path(rsem/index/)
422+
hisat2_index = ch_hisat2_index // channel: path(hisat2/index/)
423+
salmon_index = ch_salmon_index // channel: path(salmon/index/)
424+
kallisto_index = ch_kallisto_index // channel: [ meta, path(kallisto/index/) ]
425+
versions = ch_versions.ifEmpty(null) // channel: [ versions.yml ]
426426
}

0 commit comments

Comments
 (0)