Skip to content

Commit

Permalink
fixed bugs in the annotation pipeline based on issues #61, #62 and #63.
Browse files Browse the repository at this point in the history
  • Loading branch information
“Marcel-Mueck” committed Apr 11, 2024
1 parent 101feb2 commit fabcd11
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions deeprvat/annotations/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1899,6 +1899,15 @@ def process_vep(
"Consequence_inframe_deletion",
"Consequence_missense_variant",
"Consequence_non_coding_transcript_variant",
"Consequence_TFBS_amplification",
"Consequence_coding_transcript_variant",
"Consequence_feature_elongation",
"Consequence_feature_truncation",
"Consequence_regulatory_region_ablation",
"Consequence_regulatory_region_amplification",
"Consequence_sequence_variant",
"Consequence_transcript_ablation",
"Consequence_transcript_amplification"
]
all_consequences = list(set(all_consequences))
mask = pd.DataFrame(
Expand Down
2 changes: 1 addition & 1 deletion pipelines/resources/absplice_download.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ if absplice_main_conf['use_rocksdb'] == True:
conda:
f"./environment_spliceai_rocksdb.yaml"
output:
spliceai_rocksdb = Path(absplice_download_dir) / directory(config_download['spliceai_rocksdb'][genome])
spliceai_rocksdb = directory(Path(absplice_download_dir) / config_download['spliceai_rocksdb'][genome])
shell:
"spliceai_rocksdb_download --version {params.version} --db_path {output.spliceai_rocksdb} --chromosome {wildcards.chromosome}"
list_outputs.append(
Expand Down
2 changes: 1 addition & 1 deletion pipelines/resources/environment_spliceai_rocksdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ dependencies:
- bioconda::spliceai==1.3.1
- bioconda::cyvcf2==0.30.16
- pip:
- git+https://github.com/gagneurlab/spliceai_rocksdb.git@0.0.1
- git+https://github.com/gagneurlab/spliceai_rocksdb.git@v1.0.0

0 comments on commit fabcd11

Please sign in to comment.