Hello Monks,
I am a relatively new perl user (still very much the beginner) and I am working on a script to interface with a website (http://linux1.softberry.com/berry.phtml?topic=fgenesb&group=programs&subgroup=gfindb).
Essentially I would like to upload a local file to that form, select a different "closest organism", hit "Process", and then download the resulting textfile to my computer.
Running the code:
$mech->dump_forms();
seems to work at finding those forms but I'm not quite sure how to navigate the fields. Here is what I have so far. Obviously incomplete for the task, but even the first checks fail.
Thanks for taking the time to read this and any advice would be greatly appreciated.
- waoverholt
use warnings;
use strict;
use WWW::Mechanize;
my $genome_file = $ARGV[0];
my $agent = WWW::Mechanize->new();
my $url = "http://linux1.softberry.com/berry.phtml?topic=fgenesb&group
+=programs&subgroup=gfindb";
my $results = $agent->get($url);
die "GET failed" unless $results->is_success;
#$agent->dump_forms();
my $form1 = $agent->form_name("FILE"); die unless $form1->success;
my $form1_info = $agent->field("FILE", $genome_file); die unless $form
+1_info->is_success;
$agent->select();
$agent->form_name('org');
$agent->field("option", "ARCHAE BACTERIAL generic");
$agent->click();
$agent->form_name('Process');
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|