A
Amy Lee
Hello,
Here's the data I use.
ath-MIR166f Marcal1-PA 100.00 18 0 0 58 75 2226 2243 0.008 36.2
dme-mir-278 GABA-B-R3-PA 100.00 18 0 0 64 81 282 265 0.007 36.2
dme-mir-100 CG6630-PA 100.00 19 0 0 28 46 5108 5126 0.002 38.2
cbr-mir-268 nop5-PA 95.65 23 1 0 57 79 1428 1406 0.001 38.2
mmu-mir-199a-2 CG7806-PA 100.00 18 0 0 8 25 107 124 0.008 36.2
rno-mir-320 CG15161-PA 100.00 18 0 0 2 19 265 248 0.006 36.2
And at every line the contents are separated by tab, and I used following
syntax to get the first, second columns.
my $query_seq = (split /\t/)[0];
my $sub_seq = (split /\t/)[1];
But the output is quite odd. The output is
Marcal1-PA Marcal1-PA
GABA-B-R3-PA GABA-B-R3-PA
CG6630-PA CG6630-PA
nop5-PA nop5-PA
CG7806-PA CG7806-PA
CG15161-PA CG15161-PA
So could tell me how to fix that? Thanks very much.
Amy
Here's the data I use.
ath-MIR166f Marcal1-PA 100.00 18 0 0 58 75 2226 2243 0.008 36.2
dme-mir-278 GABA-B-R3-PA 100.00 18 0 0 64 81 282 265 0.007 36.2
dme-mir-100 CG6630-PA 100.00 19 0 0 28 46 5108 5126 0.002 38.2
cbr-mir-268 nop5-PA 95.65 23 1 0 57 79 1428 1406 0.001 38.2
mmu-mir-199a-2 CG7806-PA 100.00 18 0 0 8 25 107 124 0.008 36.2
rno-mir-320 CG15161-PA 100.00 18 0 0 2 19 265 248 0.006 36.2
And at every line the contents are separated by tab, and I used following
syntax to get the first, second columns.
my $query_seq = (split /\t/)[0];
my $sub_seq = (split /\t/)[1];
But the output is quite odd. The output is
Marcal1-PA Marcal1-PA
GABA-B-R3-PA GABA-B-R3-PA
CG6630-PA CG6630-PA
nop5-PA nop5-PA
CG7806-PA CG7806-PA
CG15161-PA CG15161-PA
So could tell me how to fix that? Thanks very much.
Amy