-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1.2_Install_Fastxtools-2.sh
More file actions
35 lines (27 loc) · 986 Bytes
/
1.2_Install_Fastxtools-2.sh
File metadata and controls
35 lines (27 loc) · 986 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
#!/bin/bash
###############################################
#Para este proyecto necesitaremos instalar otros programas como:
### Fastx_Toolkit ###
#Para hacer el corte con la herramienta Fastx_tools, primero hay que instalar la herramienta Fastx_Tools en docker
#Descargamos los archivos para la instalación de la página de FastxTools
#http://hannonlab.cshl.edu/fastx_toolkit/download.html
mkdir Fastx_Toolkit
cd Fastx_Toolkit
#Descargamos e instalamos las librerias
wget https://github.com/agordon/libgtextutils/releases/download/0.7/libgtextutils-0.7.tar.gz && \
wget https://github.com/agordon/fastx_toolkit/releases/download/0.0.14/fastx_toolkit-0.0.14.tar.bz2 && \
tar -xzvf libgtextutils-0.7.tar.gz && \
tar -jvxf fastx_toolkit-0.0.14.tar.bz2 && \
cd libgtextutils-0.7 && \
./configure && \
make && \
make install && \
cd ../ && \
cd fastx_toolkit-0.0.14 && \
./configure && \
make && \
make install && \
cd ../../
ldconfig && \
##Comando prueba
fastx_uncollapser -h