Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def main():
"""
Parsing command lines, creating target matrix, fitting BANE and saving the embedding.
"""
args = parameter_parser()
tab_printer(args)
P = read_graph(args)
X = read_features(args)
model = BANE(args, P, X)
model.fit()
model.save_embedding()