allenCCF
allenCCF copied to clipboard
borders_table as an output argument of plotDistToNearestToTip?
Looking at Display_Probe_Track.m
, L255 reads:
borders_table = plotDistToNearestToTip(m, p, av_plot, st, probe_length_histo, error_length, active_site_start, distance_past_tip_to_plot, show_parent_category, show_region_table, plane); % plots confidence score based on distance to nearest region along probe
Yet, inside plotDistToNearestToTip
(L1), borders_table
is not the outout argument.
borders
is a row vector of inter values and it is not the most interesting or useful output.
function borders = plotDistToNearestToTip(m, p, av, st, rpl, error_length, active_site_start, probage_past_tip_to_plot, show_parent_category, show_region_table, plane)
Simply borders
needs to be replaced with borders_table
, I suppose?