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_score.pl
blob
a6313bf09318d300830086aa9d06b97fc7ba39a2
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
5
while
(<>) {
6
chomp
;
7
my
@a
=
split
/\t/
;
8
print
"
$_
\n
"
if
$a
[-
1
] >
3000
;
9
}