-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.phylo.day2.sh
32 lines (28 loc) · 955 Bytes
/
install.phylo.day2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
#Run this to :
#Download and install NCBI BLAST
#Install pip
#use pip to install Dendropy
#Download a reference genome
#download scripts from vinson's guthub
#download Biopython tools
date
sudo chmod -R a+rX,u+w /var/cache/app-info/xapian/default
sudo apt-get install -y software-properties-common
sudo apt-add-repository universe
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get -y install default-jdk
#sudo apt-get -y install ncbi-blast+
sudo apt-get -y install python-pip
#sudo pip install -U dendropy
wget https://github.com/vinsondoyle/genbankProcessing/archive/master.zip
unzip master.zip
sudo cp genbankProcessing-master/*py /usr/local/bin
pip install biopython
#sudo apt-get install -y ncbi-blast+
#Install efetch (ncbi tools) by pasting install.efetch.txt into terminal
wget http://ormbunkar.se/aliview/downloads/linux/linux-version-1.22/aliview.install.run
chmod +x aliview.install.run
sudo ./aliview.install.run
date