摘要: ``` #!/usr/bin/perl -w use strict; use Getopt::Long; use Bio::SeqIO; my %opts; GetOptions(\%opts, "i=s", "o=s"); if (!(defined $opts{i} && defined $opts{o})){ print "\n"; &usage; }... 阅读全文
posted @ 2015-12-10 15:21 liuhui_pine 阅读(1645) 评论(0) 推荐(0)