forked from christopher-vollmers/C3POa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·36 lines (26 loc) · 745 Bytes
/
setup.sh
File metadata and controls
executable file
·36 lines (26 loc) · 745 Bytes
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
#!/bin/bash
cwd=$(pwd)
# Resolve dependencies
echo 'Pip installables (scipy, numpy, mappy, Cython)'
python3 -m pip install --user --upgrade scipy numpy mappy Cython editdistance
echo 'conk'
python3 -m pip install --user --upgrade wheel setuptools
git clone https://github.com/rvolden/conk
cd conk && make
cd $cwd
echo 'Racon'
git clone --recursive https://github.com/isovic/racon.git racon
cd racon
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
cd $cwd
echo 'abpoa'
wget https://github.com/yangao07/abPOA/releases/download/v1.4.1/abPOA-v1.4.1.tar.gz
tar -zxvf abPOA-v1.4.1.tar.gz
cd abPOA-v1.4.1; make
cd $cwd
rm abPOA-v1.4.1.tar.gz
# BLAT removed - using minimap2/mappy instead (already installed via pip)
echo 'Done'