English
Protein_Language_Model
MSA Generation
MSAGPT / utils /utils.py
Bo1015's picture
Upload 27 files
0dce0bd verified
raw
history blame
218 Bytes
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='')