mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
1a4c7cec1b
* New modules added: issues #200 and #310 * Update main.nf * Update meta.yml * Update tests/modules/gatk4/genotypegvcfs/main.nf * Apply suggestions from code review * Update main.nf * Updating tests for GenomicsDB input and adding the path for this test resource to test_data.config * Some minor changes on one of the test files I forgot to include Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: GCJMackenzie <43276267+GCJMackenzie@users.noreply.github.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: gatk4_indexfeaturefile
|
|
description: Creates an index for a feature file, e.g. VCF or BED file.
|
|
keywords:
|
|
- index
|
|
- feature
|
|
tools:
|
|
- gatk4:
|
|
description: Genome Analysis Toolkit (GATK4)
|
|
homepage: https://gatk.broadinstitute.org/hc/en-us
|
|
documentation: https://gatk.broadinstitute.org/hc/en-us/categories/360002369672s
|
|
tool_dev_url: https://github.com/broadinstitute/gatk
|
|
doi: "10.1158/1538-7445.AM2017-3590"
|
|
licence: ['BSD-3-clause']
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- feature_file:
|
|
type: file
|
|
description: VCF/BED file
|
|
pattern: "*.{vcf,vcf.gz,bed,bed.gz}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- index:
|
|
type: file
|
|
description: Index for VCF/BED file
|
|
pattern: "*.{tbi,idx}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
|
|
authors:
|
|
- "@santiagorevale"
|