-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
704ea52
commit e463068
Showing
4 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
process BCFTOOLS_IMPUTE_INFO { | ||
|
||
label 'process_medium' | ||
|
||
input: | ||
tuple val(meta), path(vcf), path(csi) | ||
|
||
output: | ||
tuple val(meta), path('glimpse_vcf_annotated.vcf.gz'), path('glimpse_vcf_annotated.vcf.gz.csi'), emit: annotated_variants | ||
|
||
script: | ||
""" | ||
bcftools +impute-info -Oz -o glimpse_vcf_annotated.vcf.gz ${vcf} | ||
bcftools index glimpse_vcf_annotated.vcf.gz | ||
""" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: bcftools_impute_info | ||
description: Run bcftools impute info plugin | ||
keywords: | ||
- bcftools | ||
- impute info | ||
input: | ||
- meta: | ||
type: map | ||
description: sample information | ||
- vcf: | ||
type: file | ||
description: Input VCF file | ||
output: | ||
- out: | ||
type: path | ||
description: Output VCF file | ||
authors: | ||
- "@Ruth Eberhardt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters