Skip to content

Commit

Permalink
Make all amplicons in amplicon_seq_arr uppercase
Browse files Browse the repository at this point in the history
This fixes pinellolab#396
  • Loading branch information
Colelyman committed Mar 28, 2024
1 parent 30a5d19 commit f08920e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ def rreplace(s, old, new):
)

else: #not auto
amplicon_seq_arr = args.amplicon_seq.split(",")
amplicon_seq_arr = list(map(lambda x: x.upper(), args.amplicon_seq.split(",")))
amplicon_name_arr = args.amplicon_name.split(",")
#split on commas, only accept empty values
amplicon_min_alignment_score_arr = [float(x) for x in args.amplicon_min_alignment_score.split(",") if x]
Expand Down

0 comments on commit f08920e

Please sign in to comment.