QNLP  v1.0
main_basis_check.py
Go to the documentation of this file.
1 """
2 Used to process the QNLP SQLite DB output.
3 Script remains but methods are largely unused.
4 """
5 
6 from QNLP.proc.basis_check import *
7 
8 if __name__ == "__main__":
9  if len(sys.argv) > 2:
10  db_file = os.sys.argv[2]
11  basis_check(db_file)
12  else:
13  basis_check()
def basis_check(db_file_name=None)
Definition: basis_check.py:32