first commit

This commit is contained in:
nlpfun
2021-05-18 00:12:12 +08:00
parent eaae0aaac3
commit d67ec28a4b
105 changed files with 469737 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright © 2010 University of Zürich
# Author: Rico Sennrich <sennrich@cl.uzh.ch>
# For licensing information, see LICENSE
import sys
from command_utils import load_arguments
from bleualign.align import Aligner
if __name__ == '__main__':
options = load_arguments(sys.argv)
a = Aligner(options)
a.mainloop()