-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: GWAS Catalog harmonisation prototype (#270)
* chore: merge main * feat: partitioning GWAS Catalog dataset to 20 equally-sized partitions * fix: missing config * feat: dag with gwas catalog harmonisation * feat: adding more primary workers to help with the task * refactor: changed autoscaling policy * feat: allow to specify number of preeptible workers * fix: bugs on to_do_list * revert: version number * fix: gwas_catalog_sumstat_preprocess no longer needs study_id * fix: unnecessary config causes issues * fix: improved regexp * refactor: generalising the config * fix: rename cluster to prevent clashes with other dags * Update src/airflow/dags/gwas_catalog_harmonisation.py Co-authored-by: Irene López <45119610+ireneisdoomed@users.noreply.github.com> --------- Co-authored-by: Irene López <45119610+ireneisdoomed@users.noreply.github.com> Co-authored-by: Daniel Suveges <daniel.suveges@protonmail.com>
- Loading branch information
1 parent
f2f8399
commit e0297cb
Showing
3 changed files
with
170 additions
and
0 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,3 @@ | ||
_target_: otg.gwas_catalog_sumstat_preprocess.GWASCatalogSumstatsPreprocessStep | ||
raw_sumstats_path: ??? | ||
out_sumstats_path: ??? |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
"""Airflow DAG for the harmonisation part of the pipeline.""" | ||
from __future__ import annotations | ||
|
||
import re | ||
import time | ||
from pathlib import Path | ||
from typing import Any | ||
|
||
import common_airflow as common | ||
from airflow.decorators import task | ||
from airflow.models.dag import DAG | ||
from airflow.providers.google.cloud.operators.gcs import GCSListObjectsOperator | ||
|
||
CLUSTER_NAME = "otg-gwascatalog-harmonisation" | ||
AUTOSCALING = "gwascatalog-harmonisation" | ||
|
||
SUMMARY_STATS_BUCKET_NAME = "open-targets-gwas-summary-stats" | ||
|
||
with DAG( | ||
dag_id=Path(__file__).stem, | ||
description="Open Targets Genetics — GWAS Catalog harmonisation", | ||
default_args=common.shared_dag_args, | ||
**common.shared_dag_kwargs, | ||
): | ||
# List raw harmonised files from GWAS Catalog | ||
list_inputs = GCSListObjectsOperator( | ||
task_id="list_raw_harmonised", | ||
bucket=SUMMARY_STATS_BUCKET_NAME, | ||
prefix="raw-harmonised", | ||
match_glob="**/*.h.tsv.gz", | ||
) | ||
# List parquet files that have been previously processed | ||
list_outputs = GCSListObjectsOperator( | ||
task_id="list_harmonised_parquet", | ||
bucket=SUMMARY_STATS_BUCKET_NAME, | ||
prefix="harmonised", | ||
match_glob="**/_SUCCESS", | ||
) | ||
|
||
# Create list of pending jobs | ||
@task(task_id="create_to_do_list") | ||
def create_to_do_list(**kwargs: Any) -> Any: | ||
"""Create the to-do list of studies. | ||
Args: | ||
**kwargs (Any): Keyword arguments. | ||
Returns: | ||
Any: To-do list. | ||
""" | ||
ti = kwargs["ti"] | ||
raw_harmonised = ti.xcom_pull( | ||
task_ids="list_raw_harmonised", key="return_value" | ||
) | ||
print("Number of raw harmonised files: ", len(raw_harmonised)) | ||
to_do_list = [] | ||
# Remove the ones that have been processed | ||
parquets = ti.xcom_pull(task_ids="list_harmonised_parquet", key="return_value") | ||
print("Number of parquet files: ", len(parquets)) | ||
for path in raw_harmonised: | ||
match_result = re.search( | ||
"raw-harmonised/(.*)/(GCST\d+)/harmonised/(.*)\.h\.tsv\.gz", path | ||
) | ||
if match_result: | ||
study_id = match_result.group(2) | ||
if f"harmonised/{study_id}.parquet/_SUCCESS" not in parquets: | ||
to_do_list.append(path) | ||
print("Number of jobs to submit: ", len(to_do_list)) | ||
ti.xcom_push(key="to_do_list", value=to_do_list) | ||
|
||
# Submit jobs to dataproc | ||
@task(task_id="submit_jobs") | ||
def submit_jobs(**kwargs: Any) -> None: | ||
"""Submit jobs to dataproc. | ||
Args: | ||
**kwargs (Any): Keyword arguments. | ||
""" | ||
ti = kwargs["ti"] | ||
todo = ti.xcom_pull(task_ids="create_to_do_list", key="to_do_list") | ||
print("Number of jobs to submit: ", len(todo)) | ||
for i in range(len(todo)): | ||
# Not to exceed default quota 400 jobs per minute | ||
if i > 0 and i % 399 == 0: | ||
time.sleep(60) | ||
input_path = todo[i] | ||
match_result = re.search( | ||
"raw-harmonised/(.*)/(GCST\d+)/harmonised/(.*)\.h\.tsv\.gz", input_path | ||
) | ||
if match_result: | ||
study_id = match_result.group(2) | ||
print("Submitting job for study: ", study_id) | ||
common.submit_pyspark_job_no_operator( | ||
cluster_name=CLUSTER_NAME, | ||
step_id="gwas_catalog_sumstat_preprocess", | ||
other_args=[ | ||
f"step.raw_sumstats_path=gs://{SUMMARY_STATS_BUCKET_NAME}/{input_path}", | ||
f"step.out_sumstats_path=gs://{SUMMARY_STATS_BUCKET_NAME}/harmonised/{study_id}.parquet", | ||
], | ||
) | ||
|
||
# list_inputs >> | ||
( | ||
[list_inputs, list_outputs] | ||
>> create_to_do_list() | ||
>> common.create_cluster( | ||
CLUSTER_NAME, | ||
autoscaling_policy=AUTOSCALING, | ||
num_workers=8, | ||
num_preemptible_workers=8, | ||
master_machine_type="n1-highmem-64", | ||
worker_machine_type="n1-standard-2", | ||
) | ||
>> common.install_dependencies(CLUSTER_NAME) | ||
>> submit_jobs() | ||
# >> common.delete_cluster(CLUSTER_NAME) | ||
) |