Skip to content

Commit

Permalink
Update saca use case to use "stats.pnrom"
Browse files Browse the repository at this point in the history
  • Loading branch information
elevans committed May 1, 2024
1 parent 62c1710 commit 96713b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file added docs/ops/doc/examples/.saca.rst.swp
Binary file not shown.
8 changes: 4 additions & 4 deletions docs/ops/doc/examples/saca.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ SciJava Ops via Fiji's scripting engine with `script parameters`_:
// create SACA Z-score heatmap
zscore = ops.op("coloc.saca.heatmapZScore").input(channels[0], channels[1]).apply()

// create SACA p-value heatmap
pvalue = ops.op("coloc.saca.heatmapPValue").input(zscore).apply()
// compute pixel-wise p-value
pvalue = ops.op("stats.pnorm").input(zscore).apply()

// create SACA significant pixel mask
sig_mask = ops.op("create.img").input(channels[0], new BitType()).apply()
Expand Down Expand Up @@ -89,8 +89,8 @@ SciJava Ops via Fiji's scripting engine with `script parameters`_:
# create SACA Z-score heatmap
zscore = ops.op("coloc.saca.heatmapZScore").input(channels[0], channels[1]).apply()

# create SACA p-value heatmap
pvalue = ops.op("coloc.saca.heatmapPValue").input(zscore).apply()
# compute pixel-wise p-value
pvalue = ops.op("stats.pnorm").input(zscore).apply()

# create SACA significant pixel mask
sig_mask = ops.op("create.img").input(channels[0], BitType()).apply()
Expand Down

0 comments on commit 96713b3

Please sign in to comment.