Hello I would like to install tophat software on ubuntu, Does anybody have an idea which command I have to use? I appreciate your help
If you are just starting please use HISAT2/Stringtie (or any other splice-aware aligner) instead of TopHat. Tuxedo suite has been superseded by this combo. See this paper for a detailed protocol.
I am trying to use it, hopefully I can get it.
You may install from Ubuntu repo:
sudo apt-get install tophat
Or you may download the binary and install it:
wget https://ccb.jhu.edu/software/tophat/downloads/tophat-2.1.1.Linux_x86_64.tar.gz tar -xvzf tophat-2.1.1.Linux_x86_64.tar.gz mv tophat-2.1.1.Linux_x86_64/ ~/bin/tophat-2.1.1/
And to use it:
export PATH=~/bin/tophat-2.1.1:$PATH
P.S.: do not forget to install bowtie2 if you install the downloaded binary.
You may also install from source, but this is an unnecessary complication.
Login before adding your answer.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
If you are just starting please use HISAT2/Stringtie (or any other splice-aware aligner) instead of TopHat. Tuxedo suite has been superseded by this combo. See this paper for a detailed protocol.
I am trying to use it, hopefully I can get it.