Skip to content

Commit

Permalink
Retaining header comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggirelli committed Mar 10, 2021
1 parent 8b130e4 commit 03a923c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oligo_melting/duplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ def calc_tm_record(record, **kwargs):
tuple: (header, seq) if kwargs['fasta_like'].
"""
record = list(record)
kwargs.update([("name", record[0].split(" ")[0]), ("seq", record[1])])
kwargs.update([("name", record[0]), ("seq", record[1])])

# Calculate Tm
output = OligoMelt.Duplex.calc_tm(**kwargs)
Expand Down

0 comments on commit 03a923c

Please sign in to comment.