Skip to content
Snippets Groups Projects
Commit 752077f3 authored by Tobias Schmidt's avatar Tobias Schmidt
Browse files

fix failing clustalw unittest

parent 23828180
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,10 @@ def ClustalW(seq1, seq2=None, clustalw=None, keep_files=False, nopgap=False,
new_list = seq.CreateSequenceList()
for s in seq_list:
ss = seq.CreateSequence( s.GetName(), s.GetString().replace('?','X') )
ss = s.Copy()
for i,c in enumerate(ss):
if c=='?':
ss[i]='X'
new_list.AddSequence(ss)
seq_list = new_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment