Perl 学习
猿大人007
这个作者很懒,什么都没留下…
展开
-
PERL 手动安装包
wget https://cpan.metacpan.org/authors/id/C/CE/CEVANS/File-Sync-0.09.tar.gz tar -xzf File-Sync-0.09.tar.gz ### 安装 perl Makefile.PL PREFIX=/home/rojyang/software/perl-5.18.0/lib make make test make...原创 2018-09-14 18:16:39 · 1626 阅读 · 0 评论 -
根据去冗余的蛋白序列提取核酸序列
rename.pl #!/usr/bin/perl -w use strict; use Getopt::Long; my $usage = <<_USAGE_; usage : perl $0 -i fasta file -o output _USAGE_ my ($input, $output); GetOptions( "i=s" => \$input, "o=s...原创 2018-07-25 16:55:45 · 193 阅读 · 0 评论