in reply to Re: Automated form submission
in thread Automated form submission
#!/usr/bin/perl use lib "/System/Library/Perl"; use HTTP::Request::Common qw(POST); use LWP::UserAgent; $ua = LWP::UserAgent->new(); print "Which file do you wish to process?\n"; chomp($file=<STDIN>); open (FILE, "$file") || die "$!"; print "Please enter name for the output file\n"; chomp($out=<STDIN>); open (OUT, ">$out") || die "$!"; while (<FILE>) { @acc = <FILE>; } print "\nPROCESSING file $file...\n"; for ($i=0;$i<=$#acc;$i++) { $accession = $acc[$i]; chomp $accession; etc....I have made the necessary corrections now
I continue to get an error from the server and I only have one sequence in the input file.
Any thoughts??
Thanks again guys!
Dr.J
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Automated form submission
by scain (Curate) on Mar 05, 2002 at 14:45 UTC | |
by dr_jgbn (Beadle) on Mar 06, 2002 at 04:31 UTC |