TransDecoder 软件是用perl 原因写的,其中包含了一些自定义的模块,通过一个脚本来进行调用,为了能够正常访问自定义的perl 模块, 在其源代码中利用了FindBin 这个模块 use strict; use warnings; use FindBin; use lib ("$FindBin::RealBin/PerlLib"); FindBin 模块可以有几个内置的变量,其中RealBin 就是当前执行脚本的所在目录,然后把自定义的perl模块放在1个叫做PerlLib…
Chapter 1. Hello, Perl/Tk 内容: Perl/Tk Concepts Some Perl/Tk History Getting Started with Perl/Tk Hello World Example Unsolicited Advice Debugging and PrototypingPerl/Tk Programs TK 是一个模块让你可以用Perl创建图形接口, 很多Per程序是用命令行写的, 可能使麻烦的和恐吓的 对于终端用户. Perl/TK 让你和按…