ae2dnaml

来自「fastDNAml is an attempt to solve the sam」· 代码 · 共 36 行

TXT
36
字号
#! /bin/sh## ae2dnaml ae2_file_name  [ "dnaml_opt1 | dnaml_opt2 | ..." ]#temp_file="$1.$$.phy"stdopt="quickadd | treefile | frequencies"if test $# -eq 1; then    opts=$stdopt;elif test $# -eq 2; then    if test -n "$2"; then opts="$stdopt | $2"    else opts="$stdopt"    fielse    comm=`echo $0 | sed -e 's&^.*/&&g'`    optprm="[ "'"'"dnaml_opt1 [ | dnaml_opt2 [...]]"'"'" ]"    echo "Usage: $comm  ae2_file  $optprmQuickadd, frequencies and treefile are included by the script and shouldnot be specified by the user.  Additional fastDNAml program options areenclosed in quotes, and separated by vertical bars (|)."    exitficonvp -ae2 "$1" -phylip "$temp_file"echo "Working on tree"id=`eval "cat < $temp_file | $opts | out.PID -o $1 fastDNAml"`rm -f "$temp_file" checkpoint.$idmv  treefile.$id  $1.tree#treetool2  $1.tree

⌨️ 快捷键说明

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