forked from oxfordmmm/BovTB-nf-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Install_dependancies.sh
executable file
·79 lines (54 loc) · 2.54 KB
/
Install_dependancies.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
set -e
# This script will fetch and install the dependancies required for the BovTB-nf pipeline.
# The dependancies are generally standard bioinformatics tools
# There are some standard prerequites for a vanilla linux install such as make, make-guile, gcc, zlib-dev, zlib1g-dev,
# libncurses5-dev, libbz2-dev, liblzma-dev, python (not python3), python-numpy, python-pip
# e.g. on Ubuntu: sudo apt install make make-guile gcc zlib-dev zlib1g-dev libncurses5-dev libbz2-dev liblzma-dev python python-numpy python-pip
# Followed by pip install biopython
# Make directory for dependancy install and cd to that directory before running this script
# FastUniq
wget https://sourceforge.net/projects/fastuniq/files/FastUniq-1.1.tar.gz && tar xzf FastUniq-1.1.tar.gz && rm -f FastUniq-1.1.tar.gz
cd FastUniq/source; make
cd ../..
# Trimmomatic
wget http://www.usadellab.org/cms/uploads/supplementary/Trimmomatic/Trimmomatic-0.38.zip && unzip Trimmomatic-0.38.zip && rm -f Trimmomatic-0.38.zip
# bwa
git clone https://github.com/lh3/bwa.git
cd bwa; make
cd ..
# samtools and bcftools
wget https://github.com/samtools/samtools/releases/download/1.9/samtools-1.9.tar.bz2 && tar xjf samtools-1.9.tar.bz2 && rm -f samtools-1.9.tar.bz2
cd samtools-1.9; make
sudo make install
cd ..
# use this to install latest commit of bcftools (as opposed to the v1.9 release)
git clone git://github.com/samtools/htslib.git
git clone git://github.com/samtools/bcftools.git
cd bcftools; make
cd ..
#wget https://github.com/samtools/bcftools/releases/download/1.9/bcftools-1.9.tar.bz2 && tar xjf bcftools-1.9.tar.bz2 && rm -f bcftools-1.9.tar.bz2
#cd bcftools-1.9; make
#sudo make install
#cd ..
# kraken2 and associated database
wget http://github.com/DerrickWood/kraken2/archive/v2.0.8-beta.tar.gz && tar xzf v2.0.8-beta.tar.gz && rm -f v2.0.8-beta.tar.gz
cd kraken2-2.0.8-beta
./install_kraken2.sh ../Kraken2
cd ..
mkdir Kraken2/db
cd Kraken2/db
wget https://ccb.jhu.edu/software/kraken2/dl/minikraken2_v1_8GB.tgz && tar xvf minikraken2_v1_8GB.tgz && rm -f minikraken2_v1_8GB.tgz
cd ../..
# get some test data
#mkdir Data
#cd Data
#wget -r -l2 -A ERR84179*.fastq.gz ftp://ftp.sra.ebi.ac.uk/vol1/fastq/ERR841/
#mv ftp.sra.ebi.ac.uk/vol1/fastq/ERR841//*_1.fastq.gz $PWD
#mv ftp.sra.ebi.ac.uk/vol1/fastq/ERR841//*_2.fastq.gz $PWD
#rm -r ftp.sra.ebi.ac.uk/
# anything else??
# Add locations to nextflow.config
echo "params.dependPath = "\"$PWD"\"" >> BovTB-nf/nextflow.config
echo "params.kraken2db = "\"$PWD"/Kraken2/db\"" >> BovTB-nf/nextflow.config
echo "Dependancies installed sucessfully!"