Skip to content

Commit

Permalink
Fix comments. Enforced uppercase to primerseqs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisgKent committed Sep 5, 2024
1 parent 92c472a commit 7b08e51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion primal_page/aliases.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def remove(
return
log.info(f"Removed alias: ([blue]{removed_aliases}[/blue])")

# Write the new info.json file
# Write the new aliases.json file
with open(aliases_file, "w") as f:
json.dump(aliases, f, sort_keys=True)

Expand Down
2 changes: 1 addition & 1 deletion primal_page/bedfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(
self.primername = primername
self.pool = pool
self.strand = strand
self.seq = seq
self.seq = seq.upper()

# Validate the primername
if determine_primername_version(primername) == PrimerNameVersion.INVALID:
Expand Down

0 comments on commit 7b08e51

Please sign in to comment.