interproscan 安装及运行错误调试

interproscan

interproscan 是个基因注释工具,可以一次运行实现多个数据库的注释。用户既可以提交蛋白序列也可以提交核酸序列,还可以对输出格式进行设置。

具体支持的数据库有:

下面这些分析虽然也能用 interproscan 来进行,但许可代码(licensed code)和数据(data)是由第三方提供的,需要自己下载并配置:

安装要求

  • 64-bit Linux
  • Perl 5 (default on most Linux distributions)
  • Python 3 (InterProScan 5.30-69.0 onwards)
  • Java JDK/JRE version 11 (InterProScan 5.37-76.0 onwards)
  • Environment variables set
    $JAVA_HOME should point to the location of the JVM
    $JAVA_HOME/bin should be added to the $PATH
    具体如何配置安装环境查看官方文档。

下载安装 interproscan

mkdir my_interproscan
cd my_interproscan
wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/5.45-80.0/interproscan-5.45-80.0-64-bit.tar.gz
wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/5.45-80.0/interproscan-5.45-80.0-64-bit.tar.gz.md5

# 推荐用md5sum检查下载是否成功
md5sum -c interproscan-5.45-80.0-64-bit.tar.gz.md5
# Must return *interproscan-5.45-80.0-64-bit.tar.gz: OK*
# If not - try downloading the file again as it may be a corrupted copy.

tar -pxzf interproscan-5.45-80.0-64-bit.tar.gz

# where:
#     p = preserve the file permissions
#     x = extract files from an archive
#     z = filter the archive through gzip
#     f = use archive file

下载 Panther Models

可以用来做 Panther member database analysis,具体看分析需求,可下可不下。
安装前需先将 interproscan 下载并安装好,需要在 interproscan 所在的文件夹内创建 data 文件夹,并将其下载解压在该文件夹。

cd [InterProScan5 home]/data/

wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/data/panther-data-14.1.tar.gz
wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/data/panther-data-14.1.tar.gz.md5

md5sum -c panther-data-14.1.tar.gz.md5
# This must return *panther-data-14.1.tar.gz: OK*
# If not - try downloading the file again as it may be a corrupted copy.

tar -pxvzf panther-data-14.1.tar.gz

使用 Local Pre-calculated Match Lookup Service (Optional)

通过提交序列在线比对来加快注释速度,需要电脑能连接 http://www.ebi.ac.uk
也可以下载到本地 download and install the InterProScan 5 lookup service
或者直接关闭这个服务,这样分析就只会本地进行。

在分析时添加 -dp 参数或直接在interproscan.properties中注释掉即可
#precalculated.match.lookup.service.url=https://www.ebi.ac.uk/interpro/match-lookup

使用 interproscan

# 查看用法
./interproscan.sh

# 测试运行,结果应该会个生成两个文件
./interproscan.sh -i test_proteins.fasta -f tsv
./interproscan.sh -i test_proteins.fasta -f tsv -dp

输入格式

fasta 格式的蛋白或核酸序列,序列中不能含有 · -* 等非法字符。

输出格式

  • TSV: A simple tab-delimited file format
  • XML: The "IMPACT" XML format (XSD available here).
  • JSON: Full output of results in JSON format
  • GFF3: The GFF 3.0 format
  • HTML: An HTML representation of the protein matches
  • SVG: An Scalable Vector Graphics representation of the protein matches

TSV示例输出

P51587  14086411a2cdf1c4cba63020e1622579    3418    Pfam    PF09103 BRCA2, oligonucleotide/oligosaccharide-binding, domain 1    2670    2799    7.9E-43 T   15-03-2013
P51587  14086411a2cdf1c4cba63020e1622579    3418    ProSiteProfiles PS50138 BRCA2 repeat profile.   1002    1036    0.0 T   18-03-2013  IPR002093   BRCA2 repeat    GO:0005515|GO:0006302
P51587  14086411a2cdf1c4cba63020e1622579    3418    Gene3D  G3DSA:2.40.50.140       2966    3051    3.1E-52 T   15-03-2013
...

每一列说明:

  1. 蛋白 accession (e.g. P51587)
  2. 序列 MD5 digest (e.g. 14086411a2cdf1c4cba63020e1622579)
  3. 序列长度 (e.g. 3418)
  4. 分析所用的库 (e.g. Pfam / PRINTS / Gene3D)
  5. 特征编号(Signature Accession ) (e.g. PF09103 / G3DSA:2.40.50.140)
  6. 特征描述(Signature Description) (e.g. BRCA2 repeat profile)
  7. 起始位置
  8. 终止位置
  9. e-value 得分 (e.g. 3.1E-52)
  10. 匹配的状态 (T: true)
  11. 运行时间
  12. InterPro 注释编号 (e.g. IPR002093) 需开启lookup service
  13. InterPro 注释描述 (e.g. BRCA2 repeat) 需开启lookup service
  14. GO 注释 (e.g. GO:0005515) 需 goterms 参数
  15. 通道注释 (e.g. REACT_71) 需 pathways 参数

运行错误提示

在运行测试文件出现一些错误

Error output from binary:
Can't locate Data/Dumper.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at bin/prosite/ps_scan.pl line 700.
BEGIN failed--compilation aborted at bin/prosite/ps_scan.pl line 700.

原因:缺失 Data/Dumper.pm
解决:联网下直接安装 Data/Dumper.pm, yum install 'perl(Data::Dumper)'

Error output from binary:
Can't locate Digest/MD5.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at bin/prosite/ps_scan.pl line 38.
BEGIN failed--compilation aborted at bin/prosite/ps_scan.pl line 38.

原因:缺失 Digest/MD5.pm
解决:联网下直接安装 Digest/MD5.pm,yum -y install perl-Digest-MD5

?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352