repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
new file: cell2loc.py
[GalaxyCodeBases.git]
/
perl
/
etc
/
WoodyMiaoLin
/
Tiger
/
filtrate_percentId.pl
blob
711846360a7127139933698059276eeeac2c50e2
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
5
while
(<>) {
6
my
@a
=
split
/\t/
;
7
print
$_
if
$a
[
2
] >
97
;
8
}