Skip to content
Snippets Groups Projects
Commit a4c1a6b5 authored by Vermaat's avatar Vermaat
Browse files

Merge pull request #59 from mutalyzer/protein-color

Fix incorrect coloring of protein sequence positions
parents c6a90aa4 dde52438
No related branches found
No related tags found
No related merge requests found
...@@ -734,7 +734,7 @@ def print_protein_html(s, first, last, O, where, text=False): ...@@ -734,7 +734,7 @@ def print_protein_html(s, first, last, O, where, text=False):
output = '%s ' % unicode(o).rjust(m) output = '%s ' % unicode(o).rjust(m)
else: else:
output = \ output = \
'<tt style="color:000000;font-weight:normal">%s</tt> ' % \ '<tt style="color:#333;font-weight:normal">%s</tt> ' % \
unicode(o).rjust(m) unicode(o).rjust(m)
# Add last line. # Add last line.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment