4 mapfiletxt = sys.argv[1]
6 with open(mapfiletxt,
'r') as txtfile:
7 expmappdb_list = txtfile.readlines()[1:]
9 for expmappdb
in expmappdb_list:
11 expmappdb = expmappdb.rstrip()
12 emdb = expmappdb.split(
'_')[0]
13 resolution = expmappdb.split(
'_')[1]
14 threshold = expmappdb.split(
'_')[2]
16 os.system(
'python3 ' +
'./normalize_map_for_parts_fiiting.py' +
' '
17 + emdb +
' --thresh ' + threshold)
19 datbase_path = emdb +
'_ML_side.dat'
20 os.system(
'python3 ' +
'./get_database_for_one_emdb_using_parts.py' +
' '
21 + emdb +
' ' + datbase_path +
' ' + resolution)