Skip to content

Commit

Permalink
ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
chuan-wang committed Oct 5, 2024
1 parent 18642e2 commit 095d1f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/aviti_run_parameter_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,14 @@ def set_run_stats(process, run_dir):
for art in process.all_outputs():
if "Lane" in art.name:
lane_nbr = int(art.name.split(" ")[1])
lane_stats = run_stats["LaneStats"][lane_nbr-1]
lane_stats = run_stats["LaneStats"][lane_nbr - 1]
for read in lane_stats["Reads"]:
read_key = read["Read"]
art.udf[f"Reads PF (M) {read_key}"] = lane_stats["PFCount"] / 1000000
art.udf[f"%PF {read_key}"] = lane_stats["PercentPF"]
art.udf[f"Yield PF (Gb) {read_key}"] = lane_stats["TotalYield"] / 1000000000
art.udf[f"Yield PF (Gb) {read_key}"] = (
lane_stats["TotalYield"] / 1000000000
)
art.udf[f"% Aligned {read_key}"] = read["PhiXAlignmentRate"]
art.udf[f"% Bases >=Q30 {read_key}"] = calculate_mean(
read["Cycles"], "PercentQ30"
Expand Down

0 comments on commit 095d1f6

Please sign in to comment.