Skip to content

Commit

Permalink
fasta qc regions gene fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jodyphelan committed Oct 31, 2024
1 parent 0e11419 commit 5c86133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pathogenprofiler/fasta.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def get_target_qc(self,bed_file: str) -> List[TargetQC]:
row = l.strip().split()
results.append(
TargetQC(
target = row[3],
percent_depth_pass=float(row[9]),
target = row[4],
percent_depth_pass=float(row[9])*100,
median_depth=int(float(row[9])),
)
)
Expand Down

0 comments on commit 5c86133

Please sign in to comment.