-
Notifications
You must be signed in to change notification settings - Fork 195
feat: add wrapper for rbt vcf_fix_iupac_alleles #1209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
e2ccf1e
d5357ed
951f0f7
ef2f74a
33b0a10
612926d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- nodefaults | ||
dependencies: | ||
- rust-bio-tools =0.42.0 | ||
- bcftools =1.17 | ||
- snakemake-wrapper-utils =0.5.3 | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: rbt vcf-fix-iupac-alleles | ||
description: | | ||
Convert any IUPAC codes in alleles into Ns (in order to comply with VCF 4 specs). | ||
url: https://github.com/rust-bio/rust-bio-tools | ||
authors: | ||
- Filipe G. Vieira | ||
input: | ||
- VCF | ||
output: | ||
- VCF/BCF |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
rule vcf_fix_iupac_alleles_vcf: | ||
input: | ||
"{file}.vcf.gz", | ||
output: | ||
vcf="results/{file}.vcf.gz", | ||
log: | ||
"logs/{file}.vcf.log", | ||
params: | ||
extra="", | ||
threads: 1 | ||
resources: | ||
mem_mb=1024, | ||
wrapper: | ||
"master/bio/rbt/vcf_fix_iupac_alleles" | ||
|
||
|
||
use rule vcf_fix_iupac_alleles_vcf as vcf_fix_iupac_alleles_bcf with: | ||
output: | ||
bcf="results/{file}.bcf", | ||
log: | ||
"logs/{file}.bcf.log", |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
__author__ = "Filipe G. Vieira" | ||
__copyright__ = "Copyright 2023, Filipe G. Vieira" | ||
__license__ = "MIT" | ||
|
||
import tempfile | ||
from snakemake.shell import shell | ||
from snakemake_wrapper_utils.bcftools import get_bcftools_opts | ||
|
||
|
||
bcftools_opts = get_bcftools_opts(snakemake, parse_ref=False) | ||
log = snakemake.log_fmt_shell(stdout=True, stderr=True) | ||
extra = snakemake.params.get("extra", "") | ||
|
||
|
||
with tempfile.TemporaryDirectory() as tmpdir: | ||
shell( | ||
"(rbt vcf-fix-iupac-alleles {extra} < {snakemake.input[0]} | bcftools sort --temp-dir {tmpdir} {bcftools_opts}) {log}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the sort? rbt vcf-fix-iupac-alleles does not change the order of the records. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The main idea was to allow for automatic output on any format ( But I can also remove it (or switch to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ping @johanneskoester |
||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
❓ Verification inconclusive
Unpin secondary dependencies; keep only the main tool fixed
Wrapper guidelines recommend pinning only the primary software (
rust-bio-tools
) and letting Bioconda resolve compatible versions for helper tools. Exact pins forbcftools
andsnakemake-wrapper-utils
increase the risk of conflicts with other wrappers and make future updates harder.(Spacing around the
=
is already correct – nice job).Unpin secondary dependencies in environment.yaml
Only the primary tool (
rust-bio-tools
) should be version‐pinned; helper packages (bcftools
,snakemake-wrapper-utils
) can be left unpinned so Bioconda can resolve compatible versions.Please update in
bio/rbt/vcf_fix_iupac_alleles/environment.yaml
(lines 6–8):📝 Committable suggestion
🤖 Prompt for AI Agents