OOD IGV: Difference between revisions
(Added new section for interactive desktop with jvm xmx flag) |
|||
Line 48: | Line 48: | ||
== Running IGV from OOD interactive desktop == | == Running IGV from OOD interactive desktop == | ||
IGV is also available from an interactive desktop job, giving the full desktop experience. Because the IGV interface is programmed in Java, we must tell IGV how much memory is available in our job context. If we don't then the default value of 2 GB is used, likely insufficient. Please see [[Java | IGV is also available from an interactive desktop job, giving the full desktop experience. Because the IGV interface is programmed in Java, we must tell IGV how much memory is available in our job context. If we don't then the default value of 2 GB is used, likely insufficient. Please see [[Java#Xmx|Java Xmx]] for more information and a more robust method of calculation. The instructions below assume an interactive desktop job has been created and prepared and that the terminal is open in that interactive desktop. This may be done using the Open OnDemand web portal. | ||
<pre> | <pre> |
Revision as of 18:00, 17 June 2021
First time setup
- get a cheaha account (see Cheaha_GettingStarted)
* then install EITHER * via OOD job launcher * OR * via Terminal on the OOD Desktop
Install IGV via Job
- launch Job Composer/Create New Job/From a Specified Path: https://rc.uab.edu/pun/sys/myjobs/new_from_path and setup the job
* Source path: /share/apps/ngs-ccts/ood-igv/jobs * Name: setup IGV 2.5 * Script Name: 2.5.sh * Cluster: Cheaha * SAVE
*
- Run/Submit the job
* Click on the green "play" arrow.
* Status changes to "queued"
* wait until job completes.
- now open OOD desktop to launch IGV from desktop icon
* see #Running_IGV_from_OOD_Desktop
Install via Terminal in OOD Desktop
- launch an interactive desktop with OOD https://rc.uab.edu
* Requst an OOD Desktop
* Set Request RAM and HOURS
* Open the desktop, once running
* desktop open
- start a "Terminal"
* open terminal app
- in terminal, enter /share/apps/ngs-ccts/ood-igv/2.5.sh
* enter path to installer
- that will install IGV locally, and launch it.
* installer will scroll a lot of text, some in alarming colors. * a few seconds after the text stop, the desktop icon and loading bar will appear
* installer finished, IGV loading
Running IGV from OOD Desktop
- Setup should create a desktop icon called "IGV-2.5.sh"
*
- In the future, you can just start OOD, then click on "IGV-2.5.sh"
*
Running IGV from OOD interactive desktop
IGV is also available from an interactive desktop job, giving the full desktop experience. Because the IGV interface is programmed in Java, we must tell IGV how much memory is available in our job context. If we don't then the default value of 2 GB is used, likely insufficient. Please see Java Xmx for more information and a more robust method of calculation. The instructions below assume an interactive desktop job has been created and prepared and that the terminal is open in that interactive desktop. This may be done using the Open OnDemand web portal.
module load IGV/<version> # replace <version> with one available in the list from `module avail IGV` avail_mem=$(($SLURM_MEM_PER_CPU * $SLURM_JOB_CPUS_PER_NODE)) heap_mem=$((avail_mem - 512)) # leave 512 for the JVM itself, rest for heap igv.sh -Xmx${heap_mem}m
Script source code
Code can be found at https://gitlab.rc.uab.edu/CCTS-Informatics-Pipelines/ood-igv