File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ SciJava Ops via Fiji's scripting engine with `script parameters`_:
4848 // create SACA Z-score heatmap
4949 zscore = ops.op("coloc.saca.heatmapZScore").input(channels[0], channels[1]).apply()
5050
51- // create SACA p-value heatmap
52- pvalue = ops.op("coloc.saca.heatmapPValue ").input(zscore).apply()
51+ // compute pixel-wise p-value
52+ pvalue = ops.op("stats.pnorm ").input(zscore).apply()
5353
5454 // create SACA significant pixel mask
5555 sig_mask = ops.op("create.img").input(channels[0], new BitType()).apply()
@@ -89,8 +89,8 @@ SciJava Ops via Fiji's scripting engine with `script parameters`_:
8989 # create SACA Z-score heatmap
9090 zscore = ops.op("coloc.saca.heatmapZScore").input(channels[0], channels[1]).apply()
9191
92- # create SACA p-value heatmap
93- pvalue = ops.op("coloc.saca.heatmapPValue ").input(zscore).apply()
92+ # compute pixel-wise p-value
93+ pvalue = ops.op("stats.pnorm ").input(zscore).apply()
9494
9595 # create SACA significant pixel mask
9696 sig_mask = ops.op("create.img").input(channels[0], BitType()).apply()
You can’t perform that action at this time.
0 commit comments