nf-core_modules/modules/gatk/realignertargetcreator/meta.yml

65 lines
1.8 KiB
YAML
Raw Normal View History

2022-05-31 18:13:48 +00:00
name: "gatk_realignertargetcreator"
2022-05-31 18:35:54 +00:00
description: Generates a list of locations that should be considered for local realignment prior genotyping.
2022-05-31 18:13:48 +00:00
keywords:
2022-05-31 18:35:54 +00:00
- bam
- vcf
- variant calling
- indel
- realignment
- targets
2022-05-31 18:13:48 +00:00
tools:
- "gatk":
description: "The full Genome Analysis Toolkit (GATK) framework, license restricted."
2022-05-31 18:35:54 +00:00
homepage: "https://gatk.broadinstitute.org/hc/en-us"
documentation: "https://github.com/broadinstitute/gatk-docs"
licence: "['https://software.broadinstitute.org/gatk/download/licensing', 'BSD', 'https://www.broadinstitute.org/gatk/about/#licensing']"
2022-05-31 18:13:48 +00:00
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2022-06-02 18:24:14 +00:00
- input:
2022-05-31 18:13:48 +00:00
type: file
2022-05-31 18:35:54 +00:00
description: Sorted and indexed BAM/CRAM/SAM file
pattern: "*.bam"
2022-06-02 18:24:14 +00:00
- index:
2022-05-31 18:35:54 +00:00
type: file
description: BAM index file
pattern: "*.bai"
- fasta:
type: file
description: Reference file used to generate BAM file
pattern: ".{fasta,fa,fna}"
2022-06-02 18:24:14 +00:00
- fai:
2022-05-31 18:35:54 +00:00
type: file
description: Index of reference file used to generate BAM file
pattern: ".fai"
- dict:
type: file
description: GATK dict file for reference
pattern: ".dict"
- known_vcf:
type: file
description: Optional input VCF file(s) with known indels
pattern: ".vcf"
2022-05-31 18:13:48 +00:00
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
2022-05-31 18:35:54 +00:00
- intervals:
2022-05-31 18:13:48 +00:00
type: file
2022-05-31 18:35:54 +00:00
description: File containg intervals that represent sites of extant and potential indels.
pattern: "*.intervals"
2022-05-31 18:13:48 +00:00
authors:
- "@jfy133"