Skip to content

Commit

Permalink
don't make plots for particel extraction in estimate_roc (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
sroet authored Mar 26, 2024
1 parent 87a6f4f commit 84eba50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pytom_tm/entry_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ def estimate_roc(argv=None):
template_matching_job = load_json_to_tmjob(args.job_file)
# Set cut off to -1 to ensure the number of particles gets extracted
_, lcc_max_values = extract_particles(
template_matching_job, args.radius_px, args.number_of_particles, cut_off=0
template_matching_job, args.radius_px, args.number_of_particles, cut_off=0,
create_plot=False
)

score_volume = read_mrc(
Expand Down

0 comments on commit 84eba50

Please sign in to comment.