English
Protein_Language_Model
MSA Generation
File size: 218 Bytes
0dce0bd
 
 
 
 
 
 
1
2
3
4
5
6
7
def move_cursor_up(n):
    # ANSI escape code to move cursor up by n lines
    print(f"\033[{n}A", end='')

def move_cursor_down(n):
    # ANSI escape code to move cursor down by n lines
    print(f"\033[{n}B", end='')