Skip to content

Commit

Permalink
Merge pull request #280 from HadrienG/2017
Browse files Browse the repository at this point in the history
put export in ~/.bashrc
  • Loading branch information
taylorreiter committed Jul 4, 2017
2 parents 09085a4 + a116afd commit 0c9c2e5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions analyzing_nanopore_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ cd
sudo mkdir /home/linuxbrew
sudo chown $USER:$USER /home/linuxbrew
git clone https://github.com/Linuxbrew/brew.git /home/linuxbrew/.linuxbrew
export PATH=/home/linuxbrew/.linuxbrew/bin:$PATH
echo 'export PATH=/home/linuxbrew/.linuxbrew/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
brew tap homebrew/science
```

Expand All @@ -55,7 +56,8 @@ Install [prokka](http://www.vicbioinformatics.com/software.prokka.shtml):
```
cd
git clone https://github.com/tseemann/prokka.git
export PATH=$PWD/prokka/bin:$PATH
echo 'export PATH=$PWD/prokka/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
prokka --setupdb
prokka --version
```
Expand Down Expand Up @@ -99,7 +101,8 @@ cd mummer-3.9.4alpha
./configure
make
sudo make install
export LD_LIBRARY_PATH="/usr/local/lib"
echo 'export LD_LIBRARY_PATH="/usr/local/lib"' >> ~/.bashrc
source ~/.bashrc
```
gnuplot v4 for [reasons](https://sourceforge.net/p/mummer/mailman/message/34939032/)

Expand Down

0 comments on commit 0c9c2e5

Please sign in to comment.