Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use channel topic for tool versions #1109

Draft
wants to merge 3 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
NXF_VER:
- "23.04.0"
- "23.11.0-edge"
- "latest-everything"
steps:
- name: Check out pipeline code
Expand Down
1 change: 1 addition & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*/

nextflow.enable.dsl = 2
nextflow.preview.topic = true

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion modules/local/bedtools_genomecov/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process BEDTOOLS_GENOMECOV {
output:
tuple val(meta), path("*.forward.bedGraph"), emit: bedgraph_forward
tuple val(meta), path("*.reverse.bedGraph"), emit: bedgraph_reverse
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/cat_additional_fasta/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process CAT_ADDITIONAL_FASTA {
output:
path "${name}.fasta", emit: fasta
path "${name}.gtf" , emit: gtf
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/deseq2_qc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ process DESEQ2_QC {
path "*sample.dists_mqc.tsv", optional:true, emit: dists_multiqc
path "*.log" , optional:true, emit: log
path "size_factors" , optional:true, emit: size_factors
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/dupradar/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process DUPRADAR {
tuple val(meta), path("*.pdf") , emit: pdf
tuple val(meta), path("*.txt") , emit: txt
tuple val(meta), path("*_mqc.txt"), emit: multiqc
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/gtf2bed/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process GTF2BED {

output:
path '*.bed' , emit: bed
path "versions.yml", emit: versions
path "versions.yml", topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/gtf_filter/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process GTF_FILTER {

output:
path "*.filtered.gtf", emit: genome_gtf
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/multiqc_custom_biotype/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process MULTIQC_CUSTOM_BIOTYPE {

output:
tuple val(meta), path("*.tsv"), emit: tsv
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/preprocess_transcripts_fasta_gencode/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ process PREPROCESS_TRANSCRIPTS_FASTA_GENCODE {

output:
path "*.fa" , emit: fasta
path "versions.yml", emit: versions
path "versions.yml", topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/rsem_merge_counts/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process RSEM_MERGE_COUNTS {
path "rsem.merged.gene_tpm.tsv" , emit: tpm_gene
path "rsem.merged.transcript_counts.tsv", emit: counts_transcript
path "rsem.merged.transcript_tpm.tsv" , emit: tpm_transcript
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/star_align_igenomes/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ process STAR_ALIGN_IGENOMES {
tuple val(meta), path('*Log.final.out') , emit: log_final
tuple val(meta), path('*Log.out') , emit: log_out
tuple val(meta), path('*Log.progress.out'), emit: log_progress
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

tuple val(meta), path('*sortedByCoord.out.bam') , optional:true, emit: bam_sorted
tuple val(meta), path('*toTranscriptome.out.bam'), optional:true, emit: bam_transcript
Expand Down
2 changes: 1 addition & 1 deletion modules/local/star_genomegenerate_igenomes/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process STAR_GENOMEGENERATE_IGENOMES {

output:
path "star" , emit: index
path "versions.yml", emit: versions
path "versions.yml", topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/summarizedexperiment/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process SUMMARIZEDEXPERIMENT {

output:
path "*.rds" , emit: rds
path "versions.yml", emit: versions
path "versions.yml", topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/tx2gene/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process TX2GENE {

output:
path "*.tsv" , emit: tsv
path "versions.yml", emit: versions
path "versions.yml", topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/tximport/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ process TXIMPORT {
path "*transcript_tpm.tsv" , emit: tpm_transcript
path "*transcript_counts.tsv" , emit: counts_transcript
path "*transcript_lengths.tsv" , emit: lengths_transcript
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/umitools_prepareforrsem/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process UMITOOLS_PREPAREFORRSEM {
output:
tuple val(meta), path('*.bam'), emit: bam
tuple val(meta), path('*.log'), emit: log
path "versions.yml" , emit: versions
path "versions.yml" , topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/bbmap/bbsplit/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/cat/fastq/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/custom/getchromsizes/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/fastp/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/fastqc/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/fq/subsample/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/gffread/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/gunzip/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/hisat2/align/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/hisat2/build/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/hisat2/extractsplicesites/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/kallisto/index/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/kallisto/quant/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/picard/markduplicates/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/preseq/lcextrap/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/qualimap/rnaseq/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rsem/calculateexpression/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rsem/preparereference/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/bamstat/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/inferexperiment/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/innerdistance/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/junctionannotation/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/junctionsaturation/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/readdistribution/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/readduplication/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/rseqc/tin/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/nf-core/salmon/index/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading