Our Sponsors



Download BioinformaticsOnline(BOL) Apps in your chrome browser.




Perl script to count occurrence of a character !

  • Public
By Jit 1893 days ago
#!/usr/bin/env perl # -*- coding: utf-8 -*- #!/usr/bin/perl use strict; use warnings; my %count_of; while ( <> ) { my @val = split "\t", $_; #my ( $word) = m/(\w+)/; $count_of{$val[13]}++; } foreach my $word ( sort { $count_of{$a} <=> $count_of{$b} } keys %count_of ) { print "$word\t$count_of{$word}\n"; }