Skip to content
Closed
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
851 changes: 421 additions & 430 deletions conf/modules.config

Large diffs are not rendered by default.

270 changes: 120 additions & 150 deletions modules.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions modules/local/blaze/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ process BLAZE {
path in_whitelist

output:
tuple val(meta), path("*.putative_bc.no_header.csv") , emit: putative_bc
tuple val(meta), path("*.whitelist.csv") , emit: whitelist
tuple val(meta), path("*.bc_count.txt") , emit: bc_count
tuple val(meta), path("*.knee_plot.png") , emit: knee_plot
path "versions.yml" , emit: versions
tuple val(meta), path("*.putative_bc.no_header.csv"), emit: putative_bc
tuple val(meta), path("*.whitelist.csv") , emit: whitelist
tuple val(meta), path("*.bc_count.txt") , emit: bc_count
tuple val(meta), path("*.knee_plot.png") , emit: knee_plot
path "versions.yml" , emit: versions_blaze, topic: versions

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

output:
tuple val(meta), path("*.filtered.fastq.gz"), emit: reads
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_chopper, topic: versions

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

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

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

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

when:
task.ext.when == null || task.ext.when
Expand Down
5 changes: 2 additions & 3 deletions modules/local/group_transcripts/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ process GROUP_TRANSCRIPTS {

input:
tuple val(meta), path(fasta)
tuple val(meta), path(gtf)
tuple val(meta2), path(gtf)
val delimiter

output:
path "*.transcripts.txt", emit: grouped_transcripts
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_group_transcripts, topic: versions

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''
def delim_arg = delimiter ? "-d '${delimiter}'" : ''

"""
Expand Down
2 changes: 1 addition & 1 deletion modules/local/isoquant/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ process ISOQUANT {
tuple val(meta), path("*/*/*.extended_annotation.gtf"), emit: extended_gtf, optional: true
tuple val(meta), path("*/*/*.transcript_model_grouped_counts.tsv"), emit: grouped_transcript_model_counts, optional: true
tuple val(meta), path("*/*/*.transcript_model_grouped_tpm.tsv"), emit: grouped_transcript_model_tpm, optional: true
path "versions.yml", emit: versions
path "versions.yml", emit: versions_isoquant, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
3 changes: 1 addition & 2 deletions modules/local/merge_mtx/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ process MERGE_MTX {

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

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"

"""
Expand Down
7 changes: 6 additions & 1 deletion modules/local/oarfish/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process OARFISH {
tuple val(meta), path("*barcodes.tsv.gz") , emit: barcodes
tuple val(meta), path("*matrix.mtx.gz") , emit: mtx
tuple val(meta), path("*meta_info.json") , emit: meta_info
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_oarfish, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down Expand Up @@ -55,5 +55,10 @@ process OARFISH {
touch ${prefix}.barcodes.tsv.gz
touch ${prefix}.matrix.mtx.gz
touch ${prefix}.meta_info.json

cat <<-END_VERSIONS > versions.yml
"${task.process}":
oarfish: \$(oarfish --version | sed 's#oarfish ##g')
END_VERSIONS
"""
}
2 changes: 1 addition & 1 deletion modules/local/preextract_fastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process PREEXTRACT_FASTQ {
output:
tuple val(meta), path("*.putative_bc_umi.tsv") , emit: barcode_info
tuple val(meta), path("*.extracted.fastq") , emit: extracted_fastq
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_preextract_fastq, topic: versions

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

output:
path "read_counts.csv" , emit: read_counts
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_read_counts, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
2 changes: 1 addition & 1 deletion modules/local/seurat/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process SEURAT {
tuple val(meta), path("*.csv"), emit: seurat_stats
tuple val(meta), path("*.png"), emit: seurat_qcs
tuple val(meta), path("*.rds"), emit: seurat_rds
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_seurat, topic: versions

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

output:
tuple val(meta), path("*.split.bam"), emit: split_bam
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_split_bam, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
4 changes: 1 addition & 3 deletions modules/local/split_fasta/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ process SPLIT_FASTA {

output:
path "*.split.fa" , emit: split_fasta
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_split_fasta, topic: versions

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''

"""
awk '/^>/{chrom=(split(substr(\$0,2), a, " ")); filename=( a[1] ".split.fa"); print > filename; next}{print >> filename}' $fasta

Expand Down
3 changes: 1 addition & 2 deletions modules/local/split_file/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ process SPLIT_FILE {

output:
tuple val(meta), path("*$file_ext"), emit: split_files
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_split_file, topic: versions

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"

"""
Expand Down
4 changes: 1 addition & 3 deletions modules/local/split_gtf/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ process SPLIT_GTF {

output:
path "*.split.gtf" , emit: split_gtf
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_split_gtf, topic: versions

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''

"""
grep -v '^#' $gtf | awk -F \$'\\t' '{print > \$1".split.gtf"}'

Expand Down
2 changes: 1 addition & 1 deletion modules/local/split_seq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process SPLIT_SEQ {

output:
tuple val(meta), path("output/*$file_ext"), emit: split_files
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_split_seq, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
3 changes: 1 addition & 2 deletions modules/local/tag_barcodes/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ process TAG_BARCODES {

output:
tuple val(meta), path("*.tagged.bam"), emit: tagged_bam
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_tag_barcodes, topic: versions

when:
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"

"""
Expand Down
2 changes: 1 addition & 1 deletion modules/local/ucsc_genepredtobed/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process UCSC_GENEPREDTOBED {

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

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

output:
path "*.genepred" , emit: genepred
path "versions.yml" , emit: versions
path "versions.yml" , emit: versions_gtftogenepred, topic: versions

when:
task.ext.when == null || task.ext.when
Expand Down
4 changes: 2 additions & 2 deletions modules/nf-core/bamtools/split/environment.yml

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

15 changes: 9 additions & 6 deletions modules/nf-core/bamtools/split/main.nf

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

68 changes: 45 additions & 23 deletions modules/nf-core/bamtools/split/meta.yml

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

Loading
Loading