Skip to content
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

Add vcf2cytosure as dependency #650

Merged
merged 3 commits into from
Jun 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions BALSAMIC/containers/annotate/annotate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ dependencies:
- bcftools>=1.10
- vcfanno=0.3.2
- gxx_linux-64
- pip:
- git+https://github.com/NBISweden/vcf2cytosure@0.5.1
4 changes: 3 additions & 1 deletion BALSAMIC/utils/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,8 @@ def get_bioinfo_tools_version(bioinfo_tools: dict,
with open(yaml_file, "r") as f:
packages = yaml.safe_load(f).get("dependencies")
for p in packages:
if isinstance(p, dict):
continue
name = p.split("=")[0]
version = "=".join(p.split("=")[1:])
if name not in bioinfo_tools:
Expand Down Expand Up @@ -621,4 +623,4 @@ def create_pon_fastq_symlink(pon_fastqs, symlink_dir):
LOG.info(f"Creating symlink {fastq_name} -> {pon_sym_file}")
os.symlink(pon_fastq, pon_sym_file)
except FileExistsError:
LOG.info(f"File {pon_sym_file} exists, skipping")
LOG.info(f"File {pon_sym_file} exists, skipping")
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Added:
* samtools flagstats and stats to workflow and MultiQC
* PASSed SV calls from Manta to clinical delivery
* An extra filter to VarDict tumor-normal to remove variants with STATUS=Germline, all other will still be around
* Added ``vcf2cytosure``` to annotate container


Changed:
Expand Down