Skip to content

Commit

Permalink
removed check for ganglia post processing script
Browse files Browse the repository at this point in the history
  • Loading branch information
pr4deepr committed Feb 15, 2022
1 parent 6888d99 commit c0d0efa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
5 changes: 0 additions & 5 deletions Tools/commands/Segment_Ganglia.ijm
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ setOption("ExpandableArrays", true);
var fiji_dir=getDirectory("imagej");
var gat_dir=fiji_dir+"scripts"+fs+"GAT"+fs+"Tools"+fs+"commands";

//check if ganglia prediction post processing macro present
var deepimagej_post_processing=gat_dir+fs+"Ganglia_prediction_post_processing.ijm";
if(!File.exists(deepimagej_post_processing)) exit("Cannot find roi to label script. Returning: "+deepimagej_post_processing);



macro "ganglia_prediction"
Expand Down Expand Up @@ -135,7 +131,6 @@ function ganglia_deepImageJ(max_projection,cell_channel,ganglia_channel)

close(ganglia_pred_processed);
close("ganglia_rgb_2");
close(temp_pred);
close(ganglia_rgb);

selectWindow(ganglia_final);
Expand Down
7 changes: 2 additions & 5 deletions _Analyse Neuron (Multi-channel) Advanced.ijm
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,8 @@ if(!File.exists(roi_to_label)) exit("Cannot find roi to label script. Returning:
var ganglia_cell_count=gat_dir+fs+"Calculate_Neurons_per_Ganglia.ijm";
if(!File.exists(ganglia_cell_count)) exit("Cannot find ganglia cell count script. Returning: "+ganglia_cell_count);

//check if ganglia prediction post processing macro present
var deepimagej_post_processing=gat_dir+fs+"Ganglia_prediction_post_processing.ijm";
if(!File.exists(deepimagej_post_processing)) exit("Cannot find roi to label script. Returning: "+deepimagej_post_processing);

//check if ganglia prediction post processing macro present

//check if ganglia prediction macro present
var segment_ganglia=gat_dir+fs+"Segment_Ganglia.ijm";
if(!File.exists(segment_ganglia)) exit("Cannot find segment ganglia script. Returning: "+segment_ganglia);

Expand Down
6 changes: 1 addition & 5 deletions _Analyse Neuron (Multi-channel).ijm
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,7 @@ if(!File.exists(roi_to_label)) exit("Cannot find roi to label script. Returning:
var ganglia_cell_count=gat_dir+fs+"Calculate_Neurons_per_Ganglia.ijm";
if(!File.exists(ganglia_cell_count)) exit("Cannot find ganglia cell count script. Returning: "+ganglia_cell_count);

//check if ganglia prediction post processing macro present
var deepimagej_post_processing=gat_dir+fs+"Ganglia_prediction_post_processing.ijm";
if(!File.exists(deepimagej_post_processing)) exit("Cannot find roi to label script. Returning: "+deepimagej_post_processing);

//check if ganglia prediction post processing macro present
//check if ganglia prediction macro present
var segment_ganglia=gat_dir+fs+"Segment_Ganglia.ijm";
if(!File.exists(segment_ganglia)) exit("Cannot find segment ganglia script. Returning: "+segment_ganglia);

Expand Down
6 changes: 1 addition & 5 deletions _Analyse Neurons (Hu only).ijm
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,7 @@ if(!File.exists(roi_to_label)) exit("Cannot find roi to label script. Returning:
var ganglia_cell_count=gat_dir+fs+"Calculate_Neurons_per_Ganglia.ijm";
if(!File.exists(ganglia_cell_count)) exit("Cannot find ganglia cell count script. Returning: "+ganglia_cell_count);

//check if ganglia prediction post processing macro present
var deepimagej_post_processing=gat_dir+fs+"Ganglia_prediction_post_processing.ijm";
if(!File.exists(deepimagej_post_processing)) exit("Cannot find roi to label script. Returning: "+deepimagej_post_processing);

//check if ganglia prediction post processing macro present
//check if ganglia prediction macro present
var segment_ganglia=gat_dir+fs+"Segment_Ganglia.ijm";
if(!File.exists(segment_ganglia)) exit("Cannot find segment ganglia script. Returning: "+segment_ganglia);

Expand Down

0 comments on commit c0d0efa

Please sign in to comment.