Skip to content

Commit

Permalink
feat: CQDG-642 change jar file to use
Browse files Browse the repository at this point in the history
  • Loading branch information
jecos committed Mar 14, 2024
1 parent cbd2c49 commit 81c1efb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dags/etl_normalize_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from airflow import DAG
from airflow.models import Param

from lib.config import release_id, batch, default_config_file, study_id, etl_base_config, spark_large_conf
from lib.config import release_id, batch, default_config_file, study_id, spark_large_conf, \
etl_variant_config

normalized_etl = etl_base_config \
normalized_etl = etl_variant_config \
.with_spark_class('bio.ferlab.etl.normalized.RunNormalizedGenomic') \
.args(
'--config', default_config_file,
Expand All @@ -17,7 +18,6 @@
'--study-id', study_id,
'--study-code', '{{ params.study_code }}'
) \
.with_spark_jar('local:///app/variant-normalize-task.jar') \
.add_package('io.projectglow:glow-spark3_2.12:2.0.0') \
.add_spark_conf({'spark.jars.excludes': 'org.apache.hadoop:hadoop-client'}, spark_large_conf)

Expand Down

0 comments on commit 81c1efb

Please sign in to comment.