-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
221367e
commit fc3c737
Showing
3 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,27 +6,29 @@ This guide will go through step by step how to start Integrative Genomics Viewer | |
|
||
In a terminal, use [SSH with X forwarding enabled](../software/ssh_x_forwarding.md): | ||
|
||
```console | ||
```bash | ||
ssh -X [user name]@rackham.uppmax.uu.se | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
```bash | ||
ssh -X [email protected] | ||
``` | ||
|
||
- Windows users: we recommend the [SSH client](../software/ssh_client.md) MobaXterm | ||
- MacOS users: the built-in [SSH client](../software/ssh_client.md) `ssh` does need [XQuartz](https://www.xquartz.org/) installed too | ||
|
||
## Step 2: Reserve a node using "interactive" | ||
|
||
Since genomic sequences require lots of memory, it is not suitable to run IGV on one of the login nodes. That would slow down the response times for all other users on the same login node.. | ||
|
||
Instead, reserve a node that you will have all by yourself. This command will reserve a whole node for 12 hours, the maximum amount of interactive time you can get and still receive a high priority for your job (feel free to change that if you want to). | ||
|
||
```console | ||
interactive -A [UPPMAX project id] -p node -t 12:00:00 | ||
``` | ||
|
||
For example: | ||
|
||
```console | ||
|
@@ -40,16 +42,19 @@ interactive -A snic2017-7-274 -M snowy -p node -t\ 12:00:00 | |
``` | ||
|
||
## Step 3: Load the IGV module | ||
|
||
When your job has been started, type the following command to load the IGV module: | ||
|
||
```console | ||
module load bioinfo-tools IGV | ||
``` | ||
|
||
## Step 4: Start IGV | ||
|
||
To start IGV, type the following: | ||
|
||
```console | ||
igv-node | ||
``` | ||
|
||
That's it, now IGV should be loaded and ready to go. For more information about how to use IGV, please visit [IGV's user guide](https://igv.org/doc/desktop/). |