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

📄 trees2nexus

📁 fastDNAml is an attempt to solve the same problem as DNAML, but to do so faster and using less memo
💻
字号:
#! /bin/sh## Convert one tree per line into PAUP (NEXUS) tree file# Accepts input from named file(s) or standard input#echo "#NEXUS"echo ""echo "Begin Trees;"if test $# -eq 0; then   egrep -n "." | sed -e 's/:/ = /' -e 's/^/  utree /'else   i=0   for file in $*; do     i=`expr $i + 1`     sed -e 's/^/  utree '"$i"' = /' $file   donefiecho "Endblock;"

⌨️ 快捷键说明

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