-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIF3D_ManguitoRotador.ijm
More file actions
455 lines (358 loc) · 10.4 KB
/
IF3D_ManguitoRotador.ijm
File metadata and controls
455 lines (358 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// changelog January 2023
// automatic nuclei segmentation in 3D stack
// EGFP avg and total signal per nuclei
// Red channel not used
var thProjection=45, thNucl=40, cEpig=2, cDAPI=3;
macro "MP14 Action Tool 1 - C00fT0b11DT9b09iTcb09r"{
run("Close All");
InDir=getDirectory("Choose a Directory");
list=getFileList(InDir);
L=lengthOf(list);
Dialog.create("Channels");
Dialog.addMessage("Choose channel numbers")
Dialog.addNumber("Epigenetic marker", cEpig);
Dialog.addNumber("DAPI", cDAPI);
Dialog.addNumber("Projection threshold", thProjection);
Dialog.addNumber("Nuclei threshold", thNucl);
Dialog.show();
cEpig= Dialog.getNumber();
cDAPI= Dialog.getNumber();
thProjection= Dialog.getNumber();
thNucl= Dialog.getNumber();
for (j=0; j<L; j++)
{
if(endsWith(list[j],"czi")){
//analyze
//d=InDir+list[j]t;
name=list[j];
print(name);
//setBatchMode(true);
ifnuclcyto3d(InDir,InDir,list[j],cEpig,cDAPI,thProjection,thNucl);
setBatchMode(false);
}
}
showMessage("Done!");
}
function ifnuclcyto3d(output,InDir,name,cEpig,cDAPI,thProjection,thNucl)
{
if (InDir=="-") {
//open(name);
run("Bio-Formats", "open=["+name+"] autoscale color_mode=Composite view=Hyperstack stack_order=XYCZT");
}
else {
if (isOpen(InDir+name)) {}
else {
//open(InDir+name);
run("Bio-Formats", "open=["+InDir+name+"] autoscale color_mode=Composite view=Hyperstack stack_order=XYCZT");
}
}
Stack.setDisplayMode("composite");
Stack.setChannel(cEpig); // cytoplasmic protein
run("Green");
Stack.setChannel(cDAPI); // DAPI
run("Blue");
run("Colors...", "foreground=black background=white selection=red");
Stack.getDimensions(width, height, channels, slices, frames);
roiManager("Reset");
run("Clear Results");
MyTitle=getTitle();
output=getInfo("image.directory");
OutDir = output+File.separator+"AnalyzedImages";
File.makeDirectory(OutDir);
aa = split(MyTitle,".");
MyTitle_short = aa[0];
getVoxelSize(vxW, vxH, depth, unit);
//print(depth);
//print(vxW);
// BACKGROUND CORRECTION
selectWindow(MyTitle);
rename("orig");
/*
run("Split Channels");
// Cytoplasmic protein:
selectWindow("C"+cEpig+"-orig");
run("Subtract Background...", "rolling=50 stack");
rename("CytoPr");
// DAPI:
selectWindow("C"+cDAPI+"-orig");
run("Subtract Background...", "rolling=50 stack");
rename("DAPI");
// Re-order and merge channels:
run("Merge Channels...", "c1=CytoPr c2=DAPI create keep");
Stack.setDisplayMode("composite");
Stack.setChannel(cEpig); // cytoplasmic protein
//run("Green");
Stack.setChannel(cDAPI); // DAPI
run("Blue");
rename("orig");
// SET DISPLAY RANGES
Stack.setChannel(cEpig);
getMinAndMax(min1, max1);
setMinAndMax(min1, max1);
setBatchMode(true);
*/
// CREATE NUCLEI MASK IN THE 3D PROJECTION OF DAPI
selectWindow("orig");
run("Duplicate...", "title=dapi duplicate channels="+cDAPI);
run("8-bit");
run("Subtract Background...", "rolling=200 stack");
run("Z Project...", "projection=[Sum Slices]");
rename("projMask");
selectWindow("projMask");
run("8-bit");
//thProjection=22;
setThreshold(thProjection, 255);
setOption("BlackBackground", false);
run("Convert to Mask");
run("Median...", "radius=1");
run("Analyze Particles...", "size=10-Infinity show=Masks exclude in_situ"); // add projections as ROIs
run("Create Selection");
roiManager("add");
// CREATE NUCLEI MASK IN EVERY SLICE
selectWindow("dapi");
//run("Duplicate...", "title=nucleiMask duplicate range=1-"+slices);
rename("nucleiMask");
run("8-bit");
//thNucl=30;
setThreshold(thNucl, 255);
setOption("BlackBackground", false);
run("Convert to Mask", "method=Default background=Dark");
run("Median...", "radius=1 stack");
run("Close-", "stack");
run("Fill Holes", "stack");
/* // erodeRad=1
run("Morphological Filters (3D)", "operation=Erosion element=Ball x-radius="+erodeRad+" y-radius="+erodeRad+" z-radius="+erodeRad);
selectWindow("nucleiMask");
close();
selectWindow("nucleiMask-Erosion");
rename("nucleiMask");
run("Invert", "stack");
*/
roiManager("Select", 0);
setBackgroundColor(255, 255, 255);
run("Clear Outside", "stack");
run("Select None");
// MEASURE VOLUMES AND INTENSITIES IN NUCLEI:
selectWindow("orig");
run("Duplicate...", "title=epigMark duplicate channels="+cEpig);
run("Subtract Background...", "rolling=100 stack");
run("Set Measurements...", "area mean redirect=None decimal=2");
// Nucleus:
selectWindow("nucleiMask");
run("Select None");
getDimensions(width, height, channels, slices, frames);
Aacc=0;
Iacc=0;
for (j=0;j<slices;j++){
run("Clear Results");
selectWindow("nucleiMask");
setSlice(j+1);
run("Create Selection");
type = selectionType();
if (type!=-1)
{
selectWindow("epigMark");
setSlice(j+1);
run("Restore Selection");
run("Measure");
Ai=getResult("Area",0);
Ii=getResult("Mean",0);
Aacc=Aacc+Ai;
Iacc=Iacc+Ii*Ai;
}
}
Vnucl=Aacc*depth;
Iavg=Iacc/Aacc;
selectWindow("nucleiMask");
close();
selectWindow("projMask");
close();
selectWindow("epigMark");
close();
// Write results:
run("Clear Results");
if(File.exists(output+File.separator+"Quantification_Global.xls"))
{
//if exists add and modify
open(output+File.separator+"Quantification_Global.xls");
IJ.renameResults("Results");
}
i=nResults;
setResult("Label", i, MyTitle);
setResult("Total nuclear volume (um3)", i, Vnucl);
setResult("Iavg epig marker", i, Iavg);
saveAs("Results", output+File.separator+"Quantification_Global.xls");
setBatchMode(false);
// DRAW:
selectWindow("orig");
run("RGB Color", "slices keep");
rename("temp");
run("Z Project...", "projection=[Sum Slices]");
rename("merge");
selectWindow("temp");
close();
selectWindow("merge");
roiManager("Select", 0);
roiManager("Set Color", "red");
roiManager("Set Line Width", 2);
run("Flatten");
wait(500);
saveAs("Jpeg", OutDir+File.separator+MyTitle_short+"_analyzed_Global.jpg");
wait(500);
rename(MyTitle_short+"_analyzed_Global.jpg");
if (InDir!="-") {
close(); }
selectWindow("merge");
close();
selectWindow("orig");
close();
setTool("zoom");
}
macro "MP14 Action Tool 2 - Cf00T2d15IT6d10m"{
run("Close All");
//just one file
name=File.openDialog("Select File");
//print(name);
Dialog.create("Channels");
Dialog.addMessage("Choose channel numbers")
Dialog.addNumber("Epigenetic marker", cEpig);
Dialog.addNumber("DAPI", cDAPI);
Dialog.addNumber("Projection threshold", thProjection);
Dialog.addNumber("Nuclei threshold", thNucl);
Dialog.show();
cEpig= Dialog.getNumber();
cDAPI= Dialog.getNumber();
thProjection= Dialog.getNumber();
thNucl= Dialog.getNumber();
run("Bio-Formats", "open=["+name+"] autoscale color_mode=Composite view=Hyperstack stack_order=XYCZT");
Stack.setDisplayMode("composite");
Stack.setChannel(cEpig); // cytoplasmic protein
run("Green");
Stack.setChannel(cDAPI); // DAPI
run("Blue");
run("Colors...", "foreground=black background=white selection=red");
Stack.getDimensions(width, height, channels, slices, frames);
roiManager("Reset");
run("Clear Results");
MyTitle=getTitle();
output=getInfo("image.directory");
OutDir = output+File.separator+"AnalyzedImages";
File.makeDirectory(OutDir);
aa = split(MyTitle,".");
MyTitle_short = aa[0];
getVoxelSize(vxW, vxH, depth, unit);
//print(depth);
//print(vxW);
// BACKGROUND CORRECTION
selectWindow(MyTitle);
rename("orig");
//--Epigenetic marker
selectWindow("orig");
run("Duplicate...", "title=epigMark duplicate channels="+cEpig);
run("Subtract Background...", "rolling=100 stack");
run("Set Measurements...", "area mean redirect=None decimal=2");
// SELECT NUCLEUS IN THE PROJECTION
selectWindow("orig");
run("Duplicate...", "title=dapi duplicate channels="+cDAPI);
run("8-bit");
run("Subtract Background...", "rolling=200 stack");
run("Z Project...", "projection=[Sum Slices]");
rename("projMask");
selectWindow("projMask");
run("8-bit");
//--Loop for one or many cells to measure
q=true;
cc=1;
while(q) {
selectWindow("projMask");
setTool("freehand");
waitForUser("Draw the contour of a cell to analyze and press OK");
type=selectionType();
if(type!=-1) {
roiManager("add");
selectWindow("orig");
roiManager("Select", 0);
waitForUser("Go to the initial slice of the cell and press OK");
initSl = getSliceNumber();
waitForUser("Go to the final slice of the cell and press OK");
endSl = getSliceNumber();
//--Get dapi
selectWindow("dapi");
roiManager("Select", 0);
run("Duplicate...", "title=cellDapi duplicate range="+initSl+"-"+endSl);
roiManager("add");
run("Select None");
//--Get epigenetic marker
selectWindow("epigMark");
roiManager("Select", 0);
run("Duplicate...", "title=cellEpig duplicate range="+initSl+"-"+endSl);
run("Select None");
//--Segment nucleus
selectWindow("cellDapi");
//thNucl=40;
setThreshold(thNucl, 255);
setOption("BlackBackground", false);
run("Convert to Mask", "method=Default background=Dark");
run("Median...", "radius=1 stack");
run("Close-", "stack");
run("Fill Holes", "stack");
roiManager("Select", 1);
setBackgroundColor(255, 255, 255);
run("Clear Outside", "stack");
run("Select None");
//--Measure volume and intensity in selected nucleus
selectWindow("cellDapi");
run("Select None");
getDimensions(width, height, channels, slices, frames);
Aacc=0;
Iacc=0;
for (j=0;j<slices;j++){
run("Clear Results");
selectWindow("cellDapi");
setSlice(j+1);
run("Create Selection");
type = selectionType();
if (type!=-1)
{
selectWindow("cellEpig");
setSlice(j+1);
run("Restore Selection");
run("Measure");
Ai=getResult("Area",0);
Ii=getResult("Mean",0);
Aacc=Aacc+Ai;
Iacc=Iacc+Ii*Ai;
}
}
Vnucl=Aacc*depth;
Iavg=Iacc/Aacc;
selectWindow("cellDapi");
close();
selectWindow("cellEpig");
close();
// Write results:
run("Clear Results");
if(File.exists(output+File.separator+"Quantification_IndividualCells.xls"))
{
//if exists add and modify
open(output+File.separator+"Quantification_IndividualCells.xls");
IJ.renameResults("Results");
}
i=nResults;
setResult("Label", i, MyTitle);
setResult("Cell number", i, cc);
setResult("Nuclear volume (um3)", i, Vnucl);
setResult("Iavg epig marker", i, Iavg);
saveAs("Results", output+File.separator+"Quantification_IndividualCells.xls");
//--Update cell counter:
cc++;
roiManager("reset");
selectWindow("orig");
setTool("zoom");
waitForUser("Check if there are more cells you would like to analyze in the image and press OK when ready");
}
q=getBoolean("Would you like to analyze another cell?");
}
run("Close All");
showMessage("Done!");
}