Source code for resomapper.standalonetools
import os
import json
import traceback
import resomapper.core.utils as ut
from resomapper.core.misc import auto_innited_logger as lggr
from resomapper.core.misc import auto_processing_options
from colorama import just_fix_windows_console
#### MAIN ####
[docs]
def run_tools():
try:
tools_menu()
except KeyboardInterrupt:
print(f"\n\n{lggr.error}You have exited from resomapper.")
except Exception as err:
print(f"\n\n{lggr.error}The following error has ocurred: {err}\n")
print("More information:\n")
traceback.print_exc()
if __name__ == "__main__":
run_tools()