免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1281 | 回复: 0
打印 上一主题 下一主题

可重复运行 如何将这段代码用hash和getopts的方式编写? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-11-14 21:51 |只看该作者 |倒序浏览
本帖最后由 alphafighter 于 2015-11-14 21:53 编辑

<code>
#!perl
use strict;
use warnings;

my $filename = 'dummy.pepmasses';
my $from     = 0;
my $to       = 0;
print "What range of information do you want to know ?\n";
{
    my $str = <STDIN>;
    chomp $str;
    ($from, $to) =  split /\.\./, $str;
}

# open file
my $ifile_fh;
open $ifile_fh, '<', $filename or
    die "Cannot open file $filename: $!\n";

# skip header
readline $ifile_fh;

my $prepnumber = 0;
my $summass = 0;
while (defined (my $line = <$ifile_fh>) ) {
    # read each line in file
    chomp $line;
    my $mz_value = (split /\s+/, $line)[2];
    if ($mz_value >= $from and $mz_value <= $to) {
        # print matched line
        print "$line\n";
        ++$prepnumber;
                $summass = $mz_value+$summass;
    }
}
print "prepnumber=$prepnumber\n" if $prepnumber;
print "average m/z number = $summass/$prepnumber\n";

close $ifile_fh;

__END__
</code>

网上看了不少getopts的例子但是看不懂。还有我的这段代码如果使用起来就会一遍遍扫描整个文件,据说用hash就会好很多。

另外求一个能够像elipse编辑java那样能够在编写中提示错误的perl编辑软件。

谢谢帮忙~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP