mirror of
https://github.com/Lukas0025/POC1-SIMD-DNA.git
synced 2025-04-05 15:21:31 +01:00
Print label in ascii pritn
This commit is contained in:
parent
ee8ae8797c
commit
7dd7b3ed6e
@ -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))
|
@ -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(" ")
|
Loading…
x
Reference in New Issue
Block a user