Print label in ascii pritn

This commit is contained in:
Lukáš Plevač 2023-11-15 19:30:55 +01:00
parent ee8ae8797c
commit 7dd7b3ed6e
2 changed files with 17 additions and 7 deletions

View File

@ -100,3 +100,13 @@ def showMolecule(molecule, spacing = ""):
for line in reversed(Invlines):
print(spacing.join(line))
# print bases in bottom
label = []
for i in range(len(molecule)):
if (molecule.getBase(0, i) != nothing):
label.append(molecule.getBase(0, i) + spacing)
else:
label.append(" " + spacing)
print("".join(label))

View File

@ -146,35 +146,35 @@ myreg.inscription([
molecule.parse("{D*E*A*F*}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")
myreg.inscription([
molecule.parse("{D*E*A*B*C*G*}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")
myreg.inscription([
molecule.parse("{DEABCG}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")
myreg.inscription([
molecule.parse("{A*B*C*}"),
molecule.parse("{D*E*}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")
myreg.inscription([
molecule.parse("{DEAF}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")
myreg.inscription([
molecule.parse("{B*C*D*E*}")
])
myreg.asciiShow("")
myreg.asciiShow(" ")