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: Makefile
[GalaxyCodeBases.git]
/
perl
/
etc
/
WoodyMiaoLin
/
Tiger
/
remove_36_37.pl
blob
74940dae8eb3e47a6c2453969c66cb3ed2018eba
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
5
open
I
,
"<"
,
"scaffold188SNP.18.gt"
;
6
open
O
,
">"
,
"scaffold188SNP.16.gt"
;
7
8
while
(<
I
>) {
9
my
@a
=
split
/\t/
;
10
splice
@a
,
19
,
2
;
11
print
O
join
"
\t
"
,
@a
;
12
}
13
14
close
I
;
15
close
O
;
16