Skip to content

Commit cfd0d64

Browse files
committed
Renamed the new function.
1 parent 2cc5d53 commit cfd0d64

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

structure_threader/wrappers/maverick_wrapper.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def mav_alpha_failsafe(mav_params, k_list):
124124
return sorted_data
125125

126126

127-
def _ti_test(outdir, norm_evidence, ti_in_use):
127+
def ti_test(outdir, norm_evidence, ti_in_use):
128128
"""
129129
Write a bestK result based on TI or STRUCTURE results.
130130
"""
@@ -171,8 +171,6 @@ def _mav_output_parser(filename):
171171

172172
return data
173173

174-
175-
176174
def _gen_files_list(output_params, no_tests):
177175
"""
178176
Defines the output filenames to read based on data from the parameter
@@ -258,7 +256,7 @@ def _write_normalized_output(evidence, k_list, ti_in_use):
258256
outfile.write("\n")
259257

260258
if no_tests is False:
261-
bestk = _ti_test(outdir, normalized, ti_in_use)
259+
bestk = ti_test(outdir, normalized, ti_in_use)
262260
return bestk
263261

264262
output_params = ("outputEvidence", "outputEvidence_on",

0 commit comments

Comments
 (0)