remove useless fn

This commit is contained in:
Beale John Henry
2025-01-22 12:43:12 +01:00
parent 93a2dc8cef
commit f7c2b91630

View File

@@ -229,18 +229,6 @@ def scrub_index( index_dir_name ):
return stream_df return stream_df
def scrub_partialator_log( ):
# open cc log file
part_log_file = open( ".log" )
cc_log = cc_log_file.read()
# regex example = Overall CC = 0.5970865
overcc_pattern = r"Overall\sCC\s=\s(\d\.\d+)"
overcc = re.search( overcc_pattern, cc_log ).group(1)
return overcc
def run_make_mtz( script_dir, hklin_file, project, crystal, dataset, cell, spacegroup, residues, res_range ): def run_make_mtz( script_dir, hklin_file, project, crystal, dataset, cell, spacegroup, residues, res_range ):
make_mtz = "{0}/make_mtz.py".format( script_dir ) make_mtz = "{0}/make_mtz.py".format( script_dir )