美文网首页
【软件安装】interproscan-5.59-91.0

【软件安装】interproscan-5.59-91.0

作者: Silver_42ac | 来源:发表于2023-06-20 10:17 被阅读0次

【1】conda 安装

conda create -n interpro -c bioconda interproscan

存在问题 share/InterProScan/bin/prosite/pfsearchV3 依赖GLIBC_2.27

GLIBC_2.27 not found会发生在ubuntu16.04系统上
有root权限可以参考
GLIBC_2.23 not found错误解决

   ``
     /lib64/libm.so.6: version `GLIBC_2.27' not found (required by bin/prosite/pfscanV3)
     strings  /lib64/libm.so.6|grep GLIBC 
    ``
   如果linux 版本高可以直接用下载的包,conda 主要解决其它软件依赖问题

【2】配置

cd /data/envs/interpro/share/InterProScan
配置 interproscan.properties 

data.directory
bin.directory
perl.command
python3.command

【3】如果是conda 安装,使用完整的data 替换
下载特定版本(与conda版本一致):Index of /pub/software/unix/iprscan/5 (ebi.ac.uk)

     cd  /data/envs/interpro/share/InterProScan/
     rm -rf data
     move interproscan-5.59-91.0/data   /data/envs/interpro/share/InterProScan/ /data/envs/interpro/share/InterProScan/

【3.1】修复
SSI index construction failed: primary keys not unique: '7,8-didemethyl-8-hydroxy-5-de' occurs more than once

for f in data/sfld/*/sfld.hmm data/superfamily/*/hmmlib_*[0-9]; do
cp $f $f.bak;
perl -lne '$_=~s/[\s\n]+$//g;if(/^(NAME|ACC) +(.*)$/){if(exists $d{$2}){$d{$2}+=1;$_.="-$d{$2}"}else{$d{$2}=0;}}print "$_"' $f > $f.tmp; mv $f.tmp $f;
done
#https://github.com/ebi-pf-team/interproscan/issues/305

【4】初始化

/data/envs/interpro/bin/python3 setup.py interproscan.properties

相关文章

  • 安装生信软件

    软件安装分类 安装之后的软件目录要求有序清楚干净 miniconda软件安装 各类语言安装包 杂记 几个软件的安装...

  • day3-阿来

    Linux软件安装 conda下载 miniconda安装 激活 安装软件

  • choco使用记录

    目录 # 用途# 安装# 使用# ----》搜索软件# ----》安装软件# ----》查看软件# ----》升级...

  • yum备忘

    添加软件源(以jenkins说明) 软件安装 软件查找 查看软件安装位置

  • 系统基础-软件安装

    Linux 软件安装 你可以了解些什么 源码包编译安装 RPM 安装软件 yum 安装软件 三种安装方法的比较 源...

  • 学习小组Day3笔记--郝志刚

    LInux安装软件 conda相当于软件管家可以下载多款软件。安装思路:wget 下载软件bash 安装sourc...

  • RedHat 7基本知识

    RPM红帽软件包 软件如何安装:源代码包+安装规则,根据安装规则安装源代码包(做成RPM) 安装软件:rpm -i...

  • 在Linux下安装软件

    Linux下如何安装软件呢? rpm命令 安装:rpm–ivh软件包名.rpm(-I安装软件,-t测试安装,不是真...

  • apt-get 命令概述

    安装软件包 重新安装软件包 修复安装软件包,"-f = ——fix-missing" 删除软件包 删除软件包,包括...

  • Homebrew 软件包管理命令

    搜索软件 查看已安装软件 查看软件详情 安装软件 卸载软件 更新 brew 查看过期软件 更新软件(XXX不写更新...

网友评论

      本文标题:【软件安装】interproscan-5.59-91.0

      本文链接:https://www.haomeiwen.com/subject/dqyyydtx.html