X
Xicheng
Rita said:Thanks,But i alredy tried it.it is not working.in output file i am
getting output from this line
print $OUTPUT "Hit Name-$hit_name\tSequence name-$id\n";
But not of this line.
This statement made some problems, I guess Perl interpolates it as aprint $OUTPUT;
scalar variable instead of a filehandle, so it prints null into your
file. I remember I saw a solution somewhere, but I can not remember it
now. Anyway you can try it the following way:
print $OUTPUT $_;
leave a space between $OUTPUT and $_...
Good luck
Xicheng