mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-18 02:46:13 -05:00
Merge branch 'master' into add-tbi-to-bcftools-concat
This commit is contained in:
commit
a6c7635b73
4 changed files with 12 additions and 8 deletions
|
@ -42,7 +42,6 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: File containing software versions
|
description: File containing software versions
|
||||||
pattern: "versions.yml"
|
pattern: "versions.yml"
|
||||||
## TODO nf-core: Delete / customise this example output
|
|
||||||
- out:
|
- out:
|
||||||
type: file
|
type: file
|
||||||
description: The data in the asked format (bed, fasta, fastq, json, pileup, sam, yaml)
|
description: The data in the asked format (bed, fasta, fastq, json, pileup, sam, yaml)
|
||||||
|
|
|
@ -20,7 +20,7 @@ process FILTLONG {
|
||||||
script:
|
script:
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
def short_reads = meta.single_end ? "-1 $shortreads" : "-1 ${shortreads[0]} -2 ${shortreads[1]}"
|
def short_reads = !shortreads ? "" : meta.single_end ? "-1 $shortreads" : "-1 ${shortreads[0]} -2 ${shortreads[1]}"
|
||||||
"""
|
"""
|
||||||
filtlong \\
|
filtlong \\
|
||||||
$short_reads \\
|
$short_reads \\
|
||||||
|
|
|
@ -2,4 +2,6 @@ process {
|
||||||
|
|
||||||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||||||
|
|
||||||
|
ext.args = "--min_length 10"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,26 @@
|
||||||
- name: filtlong test_filtlong
|
- name: filtlong test_filtlong
|
||||||
command: nextflow run ./tests/modules/filtlong -entry test_filtlong -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
command: nextflow run ./tests/modules/filtlong -entry test_filtlong -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- filtlong
|
- filtlong
|
||||||
files:
|
files:
|
||||||
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
||||||
md5sum: 7029066c27ac6f5ef18d660d5741979a
|
contains:
|
||||||
|
- "@00068f7a-51b3-4933-8fc6-7d6e29181ff9"
|
||||||
|
|
||||||
- name: filtlong test_filtlong_illumina_se
|
- name: filtlong test_filtlong_illumina_se
|
||||||
command: nextflow run ./tests/modules/filtlong -entry test_filtlong_illumina_se -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
command: nextflow run ./tests/modules/filtlong -entry test_filtlong_illumina_se -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- filtlong
|
- filtlong
|
||||||
files:
|
files:
|
||||||
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
||||||
md5sum: 7029066c27ac6f5ef18d660d5741979a
|
contains:
|
||||||
|
- "@00068f7a-51b3-4933-8fc6-7d6e29181ff9"
|
||||||
|
|
||||||
- name: filtlong test_filtlong_illumina_pe
|
- name: filtlong test_filtlong_illumina_pe
|
||||||
command: nextflow run ./tests/modules/filtlong -entry test_filtlong_illumina_pe -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
command: nextflow run ./tests/modules/filtlong -entry test_filtlong_illumina_pe -c ./tests/config/nextflow.config -c ./tests/modules/filtlong/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- filtlong
|
- filtlong
|
||||||
files:
|
files:
|
||||||
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
- path: output/filtlong/test_lr_filtlong.fastq.gz
|
||||||
md5sum: 7029066c27ac6f5ef18d660d5741979a
|
contains:
|
||||||
|
- "@00068f7a-51b3-4933-8fc6-7d6e29181ff9"
|
||||||
|
|
Loading…
Add table
Reference in a new issue