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
modified: myjupyterlab.sh
[GalaxyCodeBases.git]
/
perl
/
etc
/
WoodyMiaoLin
/
Tiger
/
printSPnot0.pl
blob
5e97cd1fba1eb25826eb5563e8b7f94ddcabc0a9
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
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
;
14
}
15
}
16
}