https://github.com/jefferis/AnalysisSuite
Raw File
Tip revision: 87ef0795ea5417fb03aa93f9305c51a0d1856393 authored by Gregory Jefferis on 20 August 2019, 11:05:36 UTC
Update README.md
Tip revision: 87ef079
README.md
Installation
============

  * Start a clean Amira session
  * Run Install.hx script in this directory (easiest to do this by drag and drop)
  * Restart Amira
  * Check that you see a startup message like `GJAnalysisSuiteAmiraScriptDir is set to /GD/projects/AnalysisSuite/amira`
  * On multi-user machines, each user must do this.

It will store the path to this directory in a `~/.Amira` file in your home folder. Code in this file is executed when you start Amira. Henceforth the variable `$GJAnalysisSuiteAmiraScriptDir` will be available to your scripts.

Use
===
If you want to use e.g. ShowClones.scro in a script you can do something like

<code>
    load "$GJAnalysisSuiteAmiraScriptDir/masterObject.scro"
    # or (renaming the script object)
    [load "$GJAnalysisSuiteAmiraScriptDir/masterObject.scro"] setLabel IRPNs
</code>
back to top