mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
Merge pull request #1711 from nvnieuwk/add-tbi-to-bcftools-concat
Added optional input of index files to bcftools/concat
This commit is contained in:
commit
22a90dbd0f
4 changed files with 33 additions and 7 deletions
|
@ -8,7 +8,7 @@ process BCFTOOLS_CONCAT {
|
||||||
'quay.io/biocontainers/bcftools:1.14--h88f3f91_0' }"
|
'quay.io/biocontainers/bcftools:1.14--h88f3f91_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(vcfs)
|
tuple val(meta), path(vcfs), path(tbi)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("*.gz"), emit: vcf
|
tuple val(meta), path("*.gz"), emit: vcf
|
||||||
|
|
|
@ -25,6 +25,11 @@ input:
|
||||||
description: |
|
description: |
|
||||||
List containing 2 or more vcf files
|
List containing 2 or more vcf files
|
||||||
e.g. [ 'file1.vcf', 'file2.vcf' ]
|
e.g. [ 'file1.vcf', 'file2.vcf' ]
|
||||||
|
- tbi:
|
||||||
|
type: files
|
||||||
|
description: |
|
||||||
|
List containing 2 or more index files (optional)
|
||||||
|
e.g. [ 'file1.tbi', 'file2.tbi' ]
|
||||||
output:
|
output:
|
||||||
- meta:
|
- meta:
|
||||||
type: map
|
type: map
|
||||||
|
|
|
@ -4,13 +4,25 @@ nextflow.enable.dsl = 2
|
||||||
|
|
||||||
include { BCFTOOLS_CONCAT } from '../../../../modules/bcftools/concat/main.nf'
|
include { BCFTOOLS_CONCAT } from '../../../../modules/bcftools/concat/main.nf'
|
||||||
|
|
||||||
workflow test_bcftools_concat {
|
workflow test_bcftools_concat_tbi {
|
||||||
|
|
||||||
input = [ [ id:'test3' ], // meta map
|
input = [ [ id:'test3' ], // meta map
|
||||||
[ file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
|
||||||
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz'], checkIfExists: true) ]
|
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz'], checkIfExists: true) ],
|
||||||
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf_gz_tbi'], checkIfExists: true),
|
||||||
|
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz_tbi'], checkIfExists: true) ]
|
||||||
|
]
|
||||||
|
|
||||||
|
BCFTOOLS_CONCAT ( input )
|
||||||
|
}
|
||||||
|
|
||||||
|
workflow test_bcftools_concat_no_tbi {
|
||||||
|
|
||||||
|
input = [ [ id:'test3' ], // meta map
|
||||||
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf_gz'], checkIfExists: true),
|
||||||
|
file(params.test_data['sarscov2']['illumina']['test2_vcf_gz'], checkIfExists: true) ],
|
||||||
|
[]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
BCFTOOLS_CONCAT ( input )
|
BCFTOOLS_CONCAT ( input )
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,17 @@
|
||||||
- name: bcftools concat test_bcftools_concat
|
- name: bcftools concat test_bcftools_concat_tbi
|
||||||
command: nextflow run ./tests/modules/bcftools/concat -entry test_bcftools_concat -c ./tests/config/nextflow.config -c ./tests/modules/bcftools/concat/nextflow.config
|
command: nextflow run ./tests/modules/bcftools/concat -entry test_bcftools_concat_tbi -c ./tests/config/nextflow.config -c ./tests/modules/bcftools/concat/nextflow.config
|
||||||
tags:
|
tags:
|
||||||
- bcftools/concat
|
|
||||||
- bcftools
|
- bcftools
|
||||||
|
- bcftools/concat
|
||||||
|
files:
|
||||||
|
- path: output/bcftools/test3.vcf.gz
|
||||||
|
md5sum: 35c88bfaad20101062e98beb217d7137
|
||||||
|
|
||||||
|
- name: bcftools concat test_bcftools_concat_no_tbi
|
||||||
|
command: nextflow run ./tests/modules/bcftools/concat -entry test_bcftools_concat_no_tbi -c ./tests/config/nextflow.config -c ./tests/modules/bcftools/concat/nextflow.config
|
||||||
|
tags:
|
||||||
|
- bcftools
|
||||||
|
- bcftools/concat
|
||||||
files:
|
files:
|
||||||
- path: output/bcftools/test3.vcf.gz
|
- path: output/bcftools/test3.vcf.gz
|
||||||
md5sum: 35c88bfaad20101062e98beb217d7137
|
md5sum: 35c88bfaad20101062e98beb217d7137
|
||||||
|
|
Loading…
Reference in a new issue