Skip to content

Commit

Permalink
debug logging in gCNV
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie committed Oct 28, 2024
1 parent 585d1fd commit e81db47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpg_workflows/stages/gcnv.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def queue_jobs(self, cohort: Cohort, inputs: StageInput) -> StageOutput:
get_logger().info(f'Using XY-trimmed VCF for {sgid}')
all_vcfs.append(str(trimmed_vcfs[sgid]))
elif sgid in cnv_vcfs:
get_logger().warning(f'Using standard VCF for {sgid}')
get_logger().debug(f'Using standard VCF for {sgid}')
all_vcfs.append(str(cnv_vcfs[sgid]['segments']))
else:
raise ValueError(f'No VCF found for {sgid}')
Expand Down

0 comments on commit e81db47

Please sign in to comment.