Skip to content

Commit

Permalink
Update init to copy spark log on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-w-wilson committed Aug 16, 2024
1 parent 09b41f2 commit ec819a8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gnomad_qc/v5/data_ingestion/create_vds.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
def main(args):
"""Create VDS from text file of VDSes or GVCFs paths and write to output path."""
hl.init(
log="/tmp/gvcf_combiner.log", default_reference="GRCh38", tmp_dir=args.temp_path
log="/tmp/gvcf_combiner.log",
tmp_dir=args.temp_path,
copy_spark_log_on_error=True,
)
hl.default_reference("GRCh38")
vdses = args.vdses
gvcfs = args.gvcfs
temp_path = args.temp_path
Expand Down

0 comments on commit ec819a8

Please sign in to comment.