Skip to content

Commit

Permalink
fix edits
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralVerity committed Jun 28, 2024
1 parent ae456fb commit 86c810c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions denv_pipeline/scripts/make_summary_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,13 +205,13 @@ def pull_low_coverage_seqs(config, all_coverage, high_coverage):
if "sylvatic" not in sero:
lst.append(cov)

in_order = sorted(lst, reverse=True)
if in_order[0] > (in_order[1] + 5):
top = [i for i in cov_dict if cov_dict[i]==in_order[0]][0]
else:
top = "NA"
in_order = sorted(lst, reverse=True)
if in_order[0] > (in_order[1] + 5):
top = [i for i in cov_dict if cov_dict[i]==in_order[0]][0]
else:
top = "NA"

top_call[name] = top
top_call[name] = top

low_cov_seqs = set()
depth = config["depth"]
Expand Down

0 comments on commit 86c810c

Please sign in to comment.