new file: cell2loc.py
[GalaxyCodeBases.git] / perl / etc / WoodyMiaoLin / Tiger / printSPnot0.pl
blob5e97cd1fba1eb25826eb5563e8b7f94ddcabc0a9
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
5 while (<>) {
6 my $a = $_;
7 chomp;
8 my @a = split /\t/;
9 foreach (9..11) {
10 my @b = split /:/, $a[$_];
11 if ($b[2] != 0) {
12 print $a;
13 last;