Skip to content

Commit

Permalink
fix(endedness): missing key for dictionary
Browse files Browse the repository at this point in the history
broken case where QNAME in multiple RGs. Now fixed.
  • Loading branch information
a-frantz committed Aug 26, 2023
1 parent 80f0b0a commit b077893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ngsderive/commands/endedness.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def find_reads_per_template(read_names):
for rg in rg_list:
read_group_reads[rg] += 1
for rg in rg_set:
read_group_templates += 1
read_group_templates[rg] += 1

read_group_rpt = {}
read_group_rpt["overall"] = tot_reads / tot_templates
Expand Down

0 comments on commit b077893

Please sign in to comment.