Skip to content

Commit

Permalink
Minor fix for global variables
Browse files Browse the repository at this point in the history
  • Loading branch information
c-h-benedetti committed May 21, 2024
1 parent 82d6f83 commit 5cdb666
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions clement/macros/peaks-yeast-profile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## What is it?

This macro is meant to be used in Fiji (ImageJ) to detect peaks of intensity within yeasts radial profiles.
To install this macro, you can place it (the ".ijm" file) in the "plugins" folder of your Fiji.

**Requirements:**
- BAR (https://imagej.net/plugins/bar)
Expand Down
22 changes: 11 additions & 11 deletions clement/macros/peaks-yeast-profile/peaks_yeasts.ijm
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@

// = = = = = = = = USER'S SETTINGS = = = = = = = =

_MIN_PEAK_WIDTH = 10;
_MAX_PEAK_WIDTH = 100;
_EXCLUDE_EDGE_PEAKS = true;
_OUTPUT_DIRECTORY = getDir("home");
_PRESMOOTH = -1;
_CHANNEL = 2;
_MIN_PEAKS_DISTANCE = 0.75;
_MIN_PEAK_AMPLITUDE = 100;
var _MIN_PEAK_WIDTH = 10;
var _MAX_PEAK_WIDTH = 100;
var _EXCLUDE_EDGE_PEAKS = true;
var _OUTPUT_DIRECTORY = getDir("home");
var _PRESMOOTH = -1;
var _CHANNEL = 2;
var _MIN_PEAKS_DISTANCE = 0.75;
var _MIN_PEAK_AMPLITUDE = 100;
// --> Only for batch:
_RUN_BATCH = false;
_INPUT_DIRECTORY = getDir("home");
_EXTENSION = ".tif";
var _RUN_BATCH = false;
var _INPUT_DIRECTORY = getDir("home");
var _EXTENSION = ".tif";


// = = = = = = = = = = CONSTANTS = = = = = = = = = =
Expand Down

0 comments on commit 5cdb666

Please sign in to comment.