Skip to content

Commit f576084

Browse files
authored
Merge pull request #143 from talagayev/fix_logo
Short fix of OpenMMDL logo
2 parents afcb1d4 + 68845e3 commit f576084

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

openmmdl/openmmdl_analysis/openmmdlanalysis.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
"""
2-
openmmdl_simulation.py
3-
Perform Simulations of Protein-ligand complexes with OpenMM
4-
"""
5-
61
import argparse
72
import sys
83
import warnings
@@ -66,7 +61,7 @@ def main():
6661
r" '. \_/``'.' / ) \ / | | | || | | || | | || .' | \ ",
6762
r" '-----' `---' `'-..-' '--' '--''--' '--''--' '--''-----'` `--------` ",
6863
r" Prepare and Perform OpenMM Protein-Ligand MD Simulations ",
69-
r" Alpha Version ",
64+
r" Version 1.1.0 ",
7065
]
7166
)
7267
print(logo)

openmmdl/openmmdl_simulation/openmmdlsimulation.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414

1515
logo = "\n".join(
1616
[
17-
" ,-----. .-------. .-''-. ,---. .--.,---. ,---.,---. ,---. ______ .---. ",
18-
" .' .-, '. \ _(`)_ \ .'_ _ \ | \ | || \ / || \ / || _ `''. | ,_| ",
19-
" / ,-.| \ _ \ | (_ o._)| / ( ` ) '| , \ | || , \/ , || , \/ , || _ | ) _ \,-./ ) ",
20-
" ; \ '_ / | :| (_,_) /. (_ o _) || |\_ \| || |\_ /| || |\_ /| ||( ''_' ) |\ '_ '`) ",
21-
" | _`,/ \ _/ || '-.-' | (_,_)___|| _( )_\ || _( )_/ | || _( )_/ | || . (_) `. | > (_) ) ",
22-
" : ( '\_/ \ ;| | ' \ .---.| (_ o _) || (_ o _) | || (_ o _) | ||(_ ._) '( . .-' ",
23-
" \ `_/ \ ) / | | \ `-' /| (_,_)\ || (_,_) | || (_,_) | || (_.\.' / `-'`-'|___ ",
24-
" '. \_/``'.' / ) \ / | | | || | | || | | || .' | \ ",
25-
" '-----' `---' `'-..-' '--' '--''--' '--''--' '--''-----'` `--------` ",
26-
" Prepare and Perform OpenMM Protein-Ligand MD Simulations ",
27-
" Alpha Version ",
17+
r" ,-----. .-------. .-''-. ,---. .--.,---. ,---.,---. ,---. ______ .---. ",
18+
r" .' .-, '. \ _(`)_ \ .'_ _ \ | \ | || \ / || \ / || _ `''. | ,_| ",
19+
r" / ,-.| \ _ \ | (_ o._)| / ( ` ) '| , \ | || , \/ , || , \/ , || _ | ) _ \,-./ ) ",
20+
r" ; \ '_ / | :| (_,_) /. (_ o _) || |\_ \| || |\_ /| || |\_ /| ||( ''_' ) |\ '_ '`) ",
21+
r" | _`,/ \ _/ || '-.-' | (_,_)___|| _( )_\ || _( )_/ | || _( )_/ | || . (_) `. | > (_) ) ",
22+
r" : ( '\_/ \ ;| | ' \ .---.| (_ o _) || (_ o _) | || (_ o _) | ||(_ ._) '( . .-' ",
23+
r" \ `_/ \ ) / | | \ `-' /| (_,_)\ || (_,_) | || (_,_) | || (_.\.' / `-'`-'|___ ",
24+
r" '. \_/``'.' / ) \ / | | | || | | || | | || .' | \ ",
25+
r" '-----' `---' `'-..-' '--' '--''--' '--''--' '--''-----'` `--------` ",
26+
r" Prepare and Perform OpenMM Protein-Ligand MD Simulations ",
27+
r" Version 1.1.0 ",
2828
]
2929
)
3030

0 commit comments

Comments
 (0)