Skip to content

Commit

Permalink
style(hrd): pycodestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jonca79 authored Dec 22, 2024
1 parent aad38b6 commit 6ed20dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/cnvkit2scarhrd.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def cnvkit_2_scarhrd(cnvkitseg_filename, scrahrdseg):
header = False
continue
chrom = columns[header_dict["chromosome"]]
if not "chr" in chrom:
if "chr" not in chrom:
chrom = f"chr{chrom}"
start_pos = columns[header_dict["start"]]
end_pos = columns[header_dict["end"]]
Expand Down

0 comments on commit 6ed20dc

Please sign in to comment.