How to launch a GenPlay jar file

From GenPlay, Einstein Genome Analyzer

Revision as of 15:56, 14 May 2012 by Nicolas (talk | contribs) (Created page with "== Introduction == GenPlay can be launched from the Web Start web page or downloaded as a jar file. There are two different ways to launch a jar file: * Double click: it is the ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Introduction

GenPlay can be launched from the Web Start web page or downloaded as a jar file.

There are two different ways to launch a jar file:

  • Double click: it is the easiest way but the user does not control how the application starts.
  • Command Line: Java parameters can be used and the user can precise how the application has to start.

This tutorial focuses on how to launch a GenPlay jar file using the command line method. It also explains how to allocate memory to GenPlay.


Requirements

Install Java

Java has to be installed on the computer you want to run GenPlay.

The latest version of Java is available here.

If more information is required, here is the official tutorial "How do I install Java ?".

Get a GenPlay jar file

All GenPlay jar files are available at the Versions page of the website. In this tutorial, the jar file is named "GenPlay.jar" and saved in a folder named "GenPlay".


Launching GenPlay

The command line

Open a terminal (see below how to do according to your operating system) and go to the folder "GenPlay".

The following command allows you to start GenPlay:

  • java -jar GenPlay.jar

If the Operating System does not find the "java" variable, this tutorial will help.

The Xmx parameter

The Xmx parameter defines the maximum heap size of the Java Virtual Machine (JVM). In other terms, it defines the maximum amount of memory the java instance can use. Here are two examples:

  • java -jar –Xmx512m GenPlay.jar
  • java -jar –Xmx2g GenPlay.jar

The first command means that GenPlay will use up to 512Mb of memory (if needed).

The second command means that GenPlay will use up to 2Gb of memory (if needed).


Note: it is considered that Operating Systems use about 1Gb of memory. If the computer you are running GenPlay has XGb of memory, it is not advised to give more than (X-1)Gb to any Java application. If many other applications are running at the meantime, allowing too much memory to a Java application may seriously slow down your system.


Windows

In order to type a command line, the Windows Command Prompt must be open.

In Windows 7/Vista, go to the "Start Menu" (Windows button on the bottom left of the screen) and search for "cmd" before pressing the "Enter" button.

In Windows XP, go to the "Start Menu" (Windows button on the bottom left of the screen), click "Run", type "cmd" and click "OK".


Here is how the command lines look like:

Win genplay.png

Win genplay 512m.png

Win genplay 2g.png


Linux

Here is how the command lines look like:

Linux genplay.png

Linux genplay 512m.png

Linux genplay 2g.png