bug-1-sfetch-paths

来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· 代码 · 共 30 行

TXT
30
字号
#! /usr/bin/perl# Test for bug #1: sfetch/SSI path bug.# sfetch can't follow paths out of current directory if it's using# an SSI index.# Reported by Zhirong.# SRE, Wed Mar  6 21:07:47 2002use testsuite;testsuite::description("bug-1-sfetch-path", "sfetch/SSI path bug");$tmp    = testsuite::tempname(); $tmpdir = testsuite::tempname(); mkdir $tmpdir, 0700;testsuite::run("../shuffle -i --dna -n 10 -t 100 > $tmp");testsuite::run("../sindex $tmp > /dev/null");testsuite::run("../sfetch -d $tmp randseq5 > /dev/null");testsuite::run("../shuffle -i --dna -n 10 -t 100 > $tmpdir/foo");testsuite::run("../sindex $tmpdir/foo > /dev/null");testsuite::run("../sfetch -d $tmpdir/foo randseq5 > /dev/null");testsuite::run("cp $tmp $tmpdir/");testsuite::run("cp $tmp.ssi $tmpdir/");testsuite::run("../sfetch -d $tmpdir/$tmp randseq5 > /dev/null");system("rm -rf $tmpdir");testsuite::done();

⌨️ 快捷键说明

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