How to launch IGV from the terminal windowHow to show a GUI message box from a bash script in linux?How to print colored text in terminal in Python?Open terminal here in Mac OS finderHow to symlink a file in Linux?How do I grep recursively?How do I reload .bashrc without logging out and back in?How do I clear/delete the current line in terminal?Node Version Manager install - nvm command not foundHow do I find all files containing specific text on Linux?How to get the current date and time in the terminal and set a custom command in terminal for it?
How to publish items after pipeline is finished?
Is Lambda Calculus purely syntactic?
Getting UPS Power from One Room to Another
Why was this person allowed to become Grand Maester?
Is it okay to have a sequel start immediately after the end of the first book?
How can I remove material from this wood beam?
Difference between prepositions in "...killed during/in the war"
Section numbering in binary
Why does this query, missing a FROM clause, not error out?
If I leave the US through an airport, do I have to return through the same airport?
What would be the way to say "just saying" in German? (Not the literal translation)
Are polynomials with the same roots identical?
Is there a DSLR/mirorless camera with minimal options like a classic, simple SLR?
C++ logging library
Can you make an identity from this product?
Amplitude of a crest and trough in a sound wave?
What would prevent chimeras from reproducing with each other?
Proving that a Russian cryptographic standard is too structured
Why did the World Bank set the global poverty line at $1.90?
Can we completely replace inheritance using strategy pattern and dependency injection?
Fermat's statement about the ancients: How serious was he?
Non-aqueous eyes?
Why is long-term living in Almost-Earth causing severe health problems?
Did Apple bundle a specific monitor with the Apple II+ for schools?
How to launch IGV from the terminal window
How to show a GUI message box from a bash script in linux?How to print colored text in terminal in Python?Open terminal here in Mac OS finderHow to symlink a file in Linux?How do I grep recursively?How do I reload .bashrc without logging out and back in?How do I clear/delete the current line in terminal?Node Version Manager install - nvm command not foundHow do I find all files containing specific text on Linux?How to get the current date and time in the terminal and set a custom command in terminal for it?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have succesfully installed the IGV program using the terminal, but for some time have not been able to start it no matter what i try. What are the necessary commands to achieve this?sudo apt install IGV
has worked and command output has run smoothly.
So far i have installed it multiple times, trying to figure out what is the problem, however i haven't gotten anywhere.
Can anybody help me?
linux terminal
add a comment |
I have succesfully installed the IGV program using the terminal, but for some time have not been able to start it no matter what i try. What are the necessary commands to achieve this?sudo apt install IGV
has worked and command output has run smoothly.
So far i have installed it multiple times, trying to figure out what is the problem, however i haven't gotten anywhere.
Can anybody help me?
linux terminal
add a comment |
I have succesfully installed the IGV program using the terminal, but for some time have not been able to start it no matter what i try. What are the necessary commands to achieve this?sudo apt install IGV
has worked and command output has run smoothly.
So far i have installed it multiple times, trying to figure out what is the problem, however i haven't gotten anywhere.
Can anybody help me?
linux terminal
I have succesfully installed the IGV program using the terminal, but for some time have not been able to start it no matter what i try. What are the necessary commands to achieve this?sudo apt install IGV
has worked and command output has run smoothly.
So far i have installed it multiple times, trying to figure out what is the problem, however i haven't gotten anywhere.
Can anybody help me?
linux terminal
linux terminal
asked Mar 24 at 20:21
Francisco VieiraFrancisco Vieira
1117
1117
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Note: I recommend that you remove the previously installed IGV package before performing the following steps to avoid conflicts. Simply execute:
$ sudo apt remove --purge igv
First you need at least Java 11 installed (because of incompatibility with previous versions).
Installing the Default JRE/JDK
The easiest option for installing Java is to use the version packaged with Ubuntu. By default, Ubuntu 18.04 includes Open JDK, which is an open-source variant of the JRE and JDK.
To install this version, first update the package index and upgrade your system:
$ sudo apt update && apt upgrade
Next, check if Java is already installed:
$ java -version
If Java is not currently installed, you'll see an output similar to this:
bash: java: Command not found.
Execute the following command to install OpenJDK:
$ sudo apt install default-jre
This command will install the Java Runtime Environment (JRE). You'll then be able to run almost all Java software.
Now verify the installation with:
$ java -version
You'll see the following output (the versions may differ):
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment (build 11.0.3+1-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.3+1-Ubuntu-3ubuntu1, mixed mode)
The next step is to download IGV and unzip the file to a location of your choice (for example to /opt
).
Then open that directory in a terminal (via "Open in Terminal") or launch a terminal and switch to the directory via cd
command (the name of the directory may differ):
$ cd /opt/IGV_Linux_2.5.0
To start IGV (from the command line), execute the following:
$ java --module-path=lib -Xmx4g @igv.args --module=org.igv/org.broad.igv.ui.Main
Alternatively, you can start IGV with the script igv.sh
inside the IGV_Linux_2.5.0
directory. You might have to make the script executable first by typing:
$ sudo chmod a+x igv.sh
Note: The command line has become a bit more complex with Java 11 compared to previous versions.
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java andjava -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?
– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328194%2fhow-to-launch-igv-from-the-terminal-window%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Note: I recommend that you remove the previously installed IGV package before performing the following steps to avoid conflicts. Simply execute:
$ sudo apt remove --purge igv
First you need at least Java 11 installed (because of incompatibility with previous versions).
Installing the Default JRE/JDK
The easiest option for installing Java is to use the version packaged with Ubuntu. By default, Ubuntu 18.04 includes Open JDK, which is an open-source variant of the JRE and JDK.
To install this version, first update the package index and upgrade your system:
$ sudo apt update && apt upgrade
Next, check if Java is already installed:
$ java -version
If Java is not currently installed, you'll see an output similar to this:
bash: java: Command not found.
Execute the following command to install OpenJDK:
$ sudo apt install default-jre
This command will install the Java Runtime Environment (JRE). You'll then be able to run almost all Java software.
Now verify the installation with:
$ java -version
You'll see the following output (the versions may differ):
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment (build 11.0.3+1-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.3+1-Ubuntu-3ubuntu1, mixed mode)
The next step is to download IGV and unzip the file to a location of your choice (for example to /opt
).
Then open that directory in a terminal (via "Open in Terminal") or launch a terminal and switch to the directory via cd
command (the name of the directory may differ):
$ cd /opt/IGV_Linux_2.5.0
To start IGV (from the command line), execute the following:
$ java --module-path=lib -Xmx4g @igv.args --module=org.igv/org.broad.igv.ui.Main
Alternatively, you can start IGV with the script igv.sh
inside the IGV_Linux_2.5.0
directory. You might have to make the script executable first by typing:
$ sudo chmod a+x igv.sh
Note: The command line has become a bit more complex with Java 11 compared to previous versions.
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java andjava -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?
– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
|
show 1 more comment
Note: I recommend that you remove the previously installed IGV package before performing the following steps to avoid conflicts. Simply execute:
$ sudo apt remove --purge igv
First you need at least Java 11 installed (because of incompatibility with previous versions).
Installing the Default JRE/JDK
The easiest option for installing Java is to use the version packaged with Ubuntu. By default, Ubuntu 18.04 includes Open JDK, which is an open-source variant of the JRE and JDK.
To install this version, first update the package index and upgrade your system:
$ sudo apt update && apt upgrade
Next, check if Java is already installed:
$ java -version
If Java is not currently installed, you'll see an output similar to this:
bash: java: Command not found.
Execute the following command to install OpenJDK:
$ sudo apt install default-jre
This command will install the Java Runtime Environment (JRE). You'll then be able to run almost all Java software.
Now verify the installation with:
$ java -version
You'll see the following output (the versions may differ):
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment (build 11.0.3+1-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.3+1-Ubuntu-3ubuntu1, mixed mode)
The next step is to download IGV and unzip the file to a location of your choice (for example to /opt
).
Then open that directory in a terminal (via "Open in Terminal") or launch a terminal and switch to the directory via cd
command (the name of the directory may differ):
$ cd /opt/IGV_Linux_2.5.0
To start IGV (from the command line), execute the following:
$ java --module-path=lib -Xmx4g @igv.args --module=org.igv/org.broad.igv.ui.Main
Alternatively, you can start IGV with the script igv.sh
inside the IGV_Linux_2.5.0
directory. You might have to make the script executable first by typing:
$ sudo chmod a+x igv.sh
Note: The command line has become a bit more complex with Java 11 compared to previous versions.
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java andjava -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?
– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
|
show 1 more comment
Note: I recommend that you remove the previously installed IGV package before performing the following steps to avoid conflicts. Simply execute:
$ sudo apt remove --purge igv
First you need at least Java 11 installed (because of incompatibility with previous versions).
Installing the Default JRE/JDK
The easiest option for installing Java is to use the version packaged with Ubuntu. By default, Ubuntu 18.04 includes Open JDK, which is an open-source variant of the JRE and JDK.
To install this version, first update the package index and upgrade your system:
$ sudo apt update && apt upgrade
Next, check if Java is already installed:
$ java -version
If Java is not currently installed, you'll see an output similar to this:
bash: java: Command not found.
Execute the following command to install OpenJDK:
$ sudo apt install default-jre
This command will install the Java Runtime Environment (JRE). You'll then be able to run almost all Java software.
Now verify the installation with:
$ java -version
You'll see the following output (the versions may differ):
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment (build 11.0.3+1-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.3+1-Ubuntu-3ubuntu1, mixed mode)
The next step is to download IGV and unzip the file to a location of your choice (for example to /opt
).
Then open that directory in a terminal (via "Open in Terminal") or launch a terminal and switch to the directory via cd
command (the name of the directory may differ):
$ cd /opt/IGV_Linux_2.5.0
To start IGV (from the command line), execute the following:
$ java --module-path=lib -Xmx4g @igv.args --module=org.igv/org.broad.igv.ui.Main
Alternatively, you can start IGV with the script igv.sh
inside the IGV_Linux_2.5.0
directory. You might have to make the script executable first by typing:
$ sudo chmod a+x igv.sh
Note: The command line has become a bit more complex with Java 11 compared to previous versions.
Note: I recommend that you remove the previously installed IGV package before performing the following steps to avoid conflicts. Simply execute:
$ sudo apt remove --purge igv
First you need at least Java 11 installed (because of incompatibility with previous versions).
Installing the Default JRE/JDK
The easiest option for installing Java is to use the version packaged with Ubuntu. By default, Ubuntu 18.04 includes Open JDK, which is an open-source variant of the JRE and JDK.
To install this version, first update the package index and upgrade your system:
$ sudo apt update && apt upgrade
Next, check if Java is already installed:
$ java -version
If Java is not currently installed, you'll see an output similar to this:
bash: java: Command not found.
Execute the following command to install OpenJDK:
$ sudo apt install default-jre
This command will install the Java Runtime Environment (JRE). You'll then be able to run almost all Java software.
Now verify the installation with:
$ java -version
You'll see the following output (the versions may differ):
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment (build 11.0.3+1-Ubuntu-3ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.3+1-Ubuntu-3ubuntu1, mixed mode)
The next step is to download IGV and unzip the file to a location of your choice (for example to /opt
).
Then open that directory in a terminal (via "Open in Terminal") or launch a terminal and switch to the directory via cd
command (the name of the directory may differ):
$ cd /opt/IGV_Linux_2.5.0
To start IGV (from the command line), execute the following:
$ java --module-path=lib -Xmx4g @igv.args --module=org.igv/org.broad.igv.ui.Main
Alternatively, you can start IGV with the script igv.sh
inside the IGV_Linux_2.5.0
directory. You might have to make the script executable first by typing:
$ sudo chmod a+x igv.sh
Note: The command line has become a bit more complex with Java 11 compared to previous versions.
edited Mar 30 at 9:28
answered Mar 24 at 21:06
youssefyoussef
65611019
65611019
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java andjava -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?
– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
|
show 1 more comment
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java andjava -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?
– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
Hey, thank you for replying to my question. I tried the first command and i got the message that the default package couldn't be found
– Francisco Vieira
Mar 29 at 20:38
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I am using Ubuntu 18.04.3, the linux version is Linux 4.15.0-39-generic x86_64. I have openjdk 10.0.2 as java version, if im not misunderstanding. I ask for futher help with regard to installing version 11.0.2, please. As i wasn't able to, if i may, could you tell me those commands ? I haven't used linux for too long, have been too busy with R on windows(i have dual boot)
– Francisco Vieira
Mar 29 at 22:18
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I've updated my answer and added a detailed step-by-step description. Hope this helps ;-)
– youssef
Mar 30 at 9:05
I followed your commands for installing java and
java -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?– Francisco Vieira
Mar 31 at 2:54
I followed your commands for installing java and
java -version
still gives me the open jdk version"10.0.2" 2018-7-17 output. The system versions i told you before include bionic beaver, right? Just now, i managed to install java 11 by using these instructions:linode.com/docs/development/java/install-java-on-ubuntu-18-04 . I now have "11.0.2" 2019-01-15 LTS. And now, thanks to you i am able to sart IGV from the terminal. You were most helpfull, thank you. If i can ask one more thing, the commands for starting Rstudio or fastQC re similar to these that you've shown me?– Francisco Vieira
Mar 31 at 2:54
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
I'm glad to hear that! Unfortunately I'm not familiar with RStudio and fastQC and can't help you with this.
– youssef
Mar 31 at 17:17
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328194%2fhow-to-launch-igv-from-the-terminal-window%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown