Skip to content
Merged
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
24 changes: 14 additions & 10 deletions src/mavedb/lib/workflow/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,20 @@ def annotation_pipeline_job_definitions(
},
"dependencies": [("warm_clingen_cache", DependencyType.SUCCESS_REQUIRED)],
},
{
"key": "populate_vep_for_score_set",
"function": "populate_vep_for_score_set",
"type": JobType.MAPPED_VARIANT_ANNOTATION,
"params": {
"correlation_id": None, # Required param to be filled in at runtime
"score_set_id": None, # Required param to be filled in at runtime
},
"dependencies": [("submit_score_set_mappings_to_car", DependencyType.SUCCESS_REQUIRED)],
},
# VEP annotation is intentionally not scheduled: its consequences came from VEP's top-level
# most_severe_consequence, the worst call across all overlapping transcripts rather than the
# one the variant was mapped to.
# TODO(#772): Re-enable once VEP annotates Allele rows directly.
# {
# "key": "populate_vep_for_score_set",
# "function": "populate_vep_for_score_set",
# "type": JobType.MAPPED_VARIANT_ANNOTATION,
# "params": {
# "correlation_id": None, # Required param to be filled in at runtime
# "score_set_id": None, # Required param to be filled in at runtime
# },
# "dependencies": [("submit_score_set_mappings_to_car", DependencyType.SUCCESS_REQUIRED)],
# },
{
"key": "populate_variant_translations_for_score_set",
"function": "populate_variant_translations_for_score_set",
Expand Down
Loading