Help for this page

Select Code to Download


  1. or download this
    my ($c, $species) = (0, shift());
    
    ...
        next if $scount < 2 || length $seq < 15 || length $seq > 30;
        print ">$species" . $c++ . "_count=$scount\n$seq\n";
    }
    
  2. or download this
    my ($c, $species) = (0, $ARGV[0]);
    
    ...
            open $outfh, '>', $species . ".new" || die $!;
        }
    }