convert a given gene....
am 25.11.2005 20:01:40 von romannyYour fourth assignment:
use LWP::Simple;
my $url = 'http://www.expasy.org/uniprot/P21049.fas';
my $content = get $url;
die "Couldn't get $url" unless defined $content;
print $content;
exit;