Skip to content

Commit

Permalink
Merge pull request #180 from genomic-medicine-sweden/cgl-pipeline-dev
Browse files Browse the repository at this point in the history
Fix prp insert size bug
  • Loading branch information
ryanjameskennedy authored Sep 15, 2023
2 parents 042504a + 74bd773 commit fde9a2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/pipeline_result_processor/prp/parse/qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def parse_postalignqc_results(input_file: File) -> QcMethodIndex:
LOG.info(f"Parsing json file: {input_file.name}")
qc_dict = json.load(input_file)
qc_res = PostAlignQcResult(
ins_size = int(qc_dict["ins_size"]),
ins_size_dev = int(qc_dict["ins_size_dev"]),
ins_size = int(float(qc_dict["ins_size"])),
ins_size_dev = int(float(qc_dict["ins_size_dev"])),
mean_cov = int(qc_dict["mean_cov"]),
pct_above_x = qc_dict["pct_above_x"],
mapped_reads = int(qc_dict["mapped_reads"]),
Expand Down

0 comments on commit fde9a2f

Please sign in to comment.