AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.
1 | ./augustus |
查看GLIBC版本:
1 | strings /lib64/libc.so.6 | grep GLIBC |
发现最高版本是2.12但是系统需要2.14才可以,那么就自己编译安装吧。
1>下载GLIBC
1 | wget http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz |
2> glibc-2.14.tar.gz解压,并进入解压后目录,创建build目录,并且进入:
1 | tar -zxvf glibc-2.14.tar.gz && cd glibc-2.14 && mkdir build && cd build |
3>编译:
1 | ../configure --prefix=/opt/glibc-2.14 #你的安装目录 |
此时报错如下:
1 | checking LD_LIBRARY_PATH variable... contains current directory |
报错意思简单明了:目录冲突;echo $LD_LIBRARY_PATH
但是次安装目录并不在我的环境变量.bashrc文件里啊。
打开configure文件,查找LD_LIBRARY_PATH,找到如下内容:
Test if LD_LIBRARY_PATH contains the notation for the current directory
since this would lead to problems installing/building glibc.
LD_LIBRARY_PATH contains the current directory if one of the following
is true:
- one of the terminals (“:” and “;”) is the first or last sign
- two terminals occur directly after each other
- the path contains an element with a dot in it
解释就是“LD_LIBRARY_PATH不能以终结符(”:” and “;”)作为开始和最后一个字符,且不能有2个终结符连在一起;因为在环境变量的最前和最后均有一个“:”,程序将此分隔符解释为当前目录了。
解决方法:
执行指令:vi ~/.bashrc
将LD_LIBRARY_PATH环境变量的开头和末尾的“:”去掉,保存。等正确编译完成后可以再次修改回原来。
执行指令:source ~/.bashrc
4> make
1 | make -j4 && make install |
make install 时报错如下:
1 | /usr/bin/install: `include/limits.h' and `/glibc-2.14/include/limits.h' are the same file |
Google之发现解决办法如下:
1 | make install -k -i |
通过k和i参数虽然可以强制安装,但经测试并不能真正解决问题,所以这最后一步的安装过程任然卡在这,目前也没有找到有效解决办法。这里先占个坑,等后面找到方法了再补充。
其中-j,-k和-i参数解释如下:
1 | -j [jobs], --jobs[=jobs] |
5>添加环境变量
1 | export LD_LIBRARY_PATH=/opt/glibc-2.14/lib:$LD_LIBRARY_PATH |
PATH和LD_LIBRARY_PATH区别
PATH: 可执行程序的查找路径;
LD_LIBRARY_PATH: 动态库的查找路径;
再安装AUGUSTUS
上述关于GLIBC安装虽已失败告终,但AUGUSTUS的安装参考Installing Augustus with manual bamtools installation后得到解决。
1. 主要是无root权限下先安装依赖工具bam2hints 和 filterBam👇
首先安装 bamtools
1 | git clone git://github.com/pezmaster31/bamtools.git |
2.修改AUGUSTUS中部分MakeFile文件
首先修改augustus-3.2.3/auxprogs/bam2hints
目录下MakeFile文件内容:
1 | Add: |
再修改augustus-3.2.3/auxprogs/filterBam/src
目录下MakeFile文件内容:
1 | Replace: |
3. make
安装
最后回到主目录augustus-3.2.3
下make
即可安装成功,不需要make install
过程。
v1.5.2