⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test1-conversion.pl

📁 这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer
💻 PL
字号:
#! /usr/bin/perl# Test hmmconvert.## Adapted from Exercises.sh, xref SRE, Fri Oct 23 10:38:44 1998# conversion bug detected in 2.1 and fixed in 2.1.1a ## CVS $Id: test1-conversion.pl,v 1.1 2003/04/04 00:34:09 eddy Exp $$usage = "test1-conversion.pl <hmmconvert>\n";if ($#ARGV != 0) { die "Wrong argument number.\n$usage"; }$hmmconvert = shift;$ok      = 1;if ($ok) {    system("$hmmconvert -F fn3-bin test1.tmp1 > /dev/null 2> /dev/null");    if ($? != 0) { $ok = 0; }}if ($ok) {    system("$hmmconvert -F fn3-bin-swap test1.tmp2 > /dev/null 2> /dev/null");    if ($? != 0) { $ok = 0; }}if ($ok) {    system("diff test1.tmp1 test1.tmp2 > /dev/null");    if ($? != 0) { $ok = 0; }}foreach $tmpfile ("test1.tmp1", "test1.tmp2") {    unlink $tmpfile if -e $tmpfile;}if ($ok) { print "ok\n";     exit 0; }else     { print "FAILED\n"; exit 1; }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -