美文网首页
add_species.pl

add_species.pl

作者: 我想养只猫zhl | 来源:发表于2020-04-16 11:12 被阅读0次

    #!/usr/bin/perl

    use strict; use warnings;

    use FileHandle;

    my($file,$spe) = @ARGV;

    my $in=FileHandle->new("< $file");

    my $geneid;

    while(<$in>){

    chomp;

    if($_=~/>/){

    my @arr=split(/;/, $_);

    $geneid=$arr[0].$spe;

    print "$geneid\n";

    }else{

    print "$_\n";

    }

    }

    相关文章

      网友评论

          本文标题:add_species.pl

          本文链接:https://www.haomeiwen.com/subject/ygzlvhtx.html