https://github.com/jefferis/AnalysisSuite
Revision 1fbadb65493c933f25e719b67a64723e318658c4 authored by Gregory Jefferis on 30 January 2014, 21:35:04 UTC, committed by Gregory Jefferis on 30 January 2014, 21:35:04 UTC
1 parent fccf6f6
Raw File
Tip revision: 1fbadb65493c933f25e719b67a64723e318658c4 authored by Gregory Jefferis on 30 January 2014, 21:35:04 UTC
Deprecate Read/WriteAmiraLandmarks in favour of nat
Tip revision: 1fbadb6
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