I know there are a lot of methods to estimate the Tm of a sequence with mismatches and gaps.
I've been using biopython and getting negative values for the addition of gaps. I'm not sure if there is a better tool out there that can calculate Tm for the results of blastn
I would have two strings, query and subject, and blastn always aligns them for you so they are the same length.
Q: ATGCGTGCGTAAAATGCGT
|||.|||.||||..||..|
S: ATGTGTGTGTAA--TGTTT
I don't want to naively take the mean of the two sequences, rather the Tm of the duplex. Thanks in advance