Skip to content

Commit

Permalink
Better use . instead of + for amplicon strand
Browse files Browse the repository at this point in the history
Amplicons do not really sit on any single strand.
  • Loading branch information
wm75 committed May 3, 2024
1 parent 81fcce5 commit 800781e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions varvamp/scripts/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def write_qpcr_to_files(path, final_schemes, ambiguous_consensus, log_file):
amp["RIGHT"][2],
amp_name,
round(amp["penalty"], 1),
"+",
".",
sep="\t",
file=bed
)
Expand Down Expand Up @@ -313,7 +313,7 @@ def write_scheme_to_files(path, amplicon_scheme, ambiguous_consensus, mode, log_
print(
"ambiguous_consensus",
*record,
"+",
".",
sep="\t",
file=bed
)
Expand Down

0 comments on commit 800781e

Please sign in to comment.