-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwelcome_msg.py
35 lines (29 loc) · 1.21 KB
/
welcome_msg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
#filename: welcome_msg.py
##===============================================================================
## Welcome message
##===============================================================================
def main():
return;
def welcome_msg(title):
'Print Welcome message'
tool_name='MODE-TASK'
print '\n\n'
print '\t|=======================================================|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|\t :-) >>------->',tool_name,'<-------<< (-:\t|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|\t :-) ----------',title,'---------- (-:\t\t|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|\tThis programe performs the', title,' \t\t| \n\t|\ton a MD trajectory\t\t\t\t|'
print '\t|\t\t\t\t\t\t\t|\n', '\t|\tAuthors: Bilal Nizami\t\t\t\t|\n','\t|\tResearch Unit in Bioinformatics (RUBi)\t\t|\n', '\t|\tRhodes University, 2017\t\t\t\t|'
print '\t|\tDistributed under GNU GPL 3.0\t\t\t|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|\thttps://github.com/michaelglenister/NMA-TASK\t|'
print '\t|\t\t\t\t\t\t\t|'
print '\t|=======================================================|'
print '\n'
return;
if __name__=="__main__":
main()