I've tried to modify my code, but it prints only the first two link, I need it to go to these links and then download a file from these links...because I extract the links from the main page, then I ask to go to the links, but I can do it If I have only one, I want to tell to go to the links, and then to download from another links...but I can't make it do repeating my cicle of action...I don't know if my english is good to be understand.... :-( sorry if not, I'm trying to improve also it..I'll paste the code

#!/usr/local/bin/perl use strict; use warnings; use LWP::Simple; my $url3 = "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum +/GetPage.pl?pdbcode=2j6p&template=ligands.html&l=1.1"; my $content =get ($url3); use HTML::TreeBuilder; my $p = HTML::TreeBuilder->new; $p->parse_content($content); my @href; my $href; my @anchors = $p->look_down(_tag => q{a}); for my $anchor (@anchors) { my $txt = $anchor->as_text; if ($txt=~ /EPE\s/) { print $txt, qq{\n}; $href = $anchor->attr(q{href}); print $href, qq{\n}; chomp ($href); push @href, $href; #now I need to go to the link where there are my EPE ligand and then +parse and extract the link of the RunLigplot.pl that is the output of + a program LigPlot, written in perl, is a postcript, and I need that +file as a script to extract info....I need to repeat these parsing fo +r every link,for every EPE.... } } $p->delete; for my $param ( @href ) { my $content = get ( "http://www.ebi.ac.uk$param" ); process_content ($content); # << This is missing from your code !! +! } sub process_content { my $content = shift; $p = HTML::TreeBuilder->new; $p->parse_content($content); my @href0; my @anchors0 = $p->look_down(_tag => q{a}); for my $anchor0 (@anchors0) { my $href0 = $anchor0->attr(q{href}); if ($href0=~ /ligplot\d\d_\d\d'/) { print $href0, qq{\n}; push @href0, $href0; for my $param0 ( @href0 ) { $content = get ( "http://www.ebi.ac.uk$param0" ); my $content = shift; print my $param0; #I need to download files from every link $param0... my @files = (["http://www.ebi.ac.uk$param0", "$pdb.$param0.pl"], ); for my $duplet (@files) { mirror($duplet->[0], $duplet->[1]); } } $p->delete; } } }

before...

Hi dear monks, I promise this is my last question for today...I'm driving a little crazy :-( .I want to repeat the cicle of parsing for every files that I need...I'll paste a little part of my long code with my comment in english (so you can understand...because they were in italian before...)

#!/usr/local/bin/perl use strict; use warnings; use LWP::Simple; my $url3 = "http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum +/GetPage.pl?pdbcode=2j6p&template=ligands.html&l=1.1"; my $content =get ($url3); use HTML::TreeBuilder; my $p = HTML::TreeBuilder->new; $p->parse_content($content); my @href; my @anchors = $p->look_down(_tag => q{a}); for my $anchor (@anchors){ my $txt = $anchor->as_text; if ($txt=~ /EPE\s/){ print $txt, qq{\n}; my $href = $anchor->attr(q{href}); print $href, qq{\n}; chomp ($href); push @href, $href; #now I need to go to the link where there are my EPE ligand and then +parse and extract the link of the RunLigplot.pl that is the output of + a program LigPlot, written in perl, is a postcript, and I need that +file as a script to extract info....I need to repeat these parsing fo +r every link,for every EPE.... my $i=1; for my $href(@href) {my $url4= "http://www.ebi.ac.uk$href[$i]; $content=get($url4); $i=$i+1; } } } $p->delete; $p = HTML::TreeBuilder->new; $p->parse_content($content); my @href0; my @anchors0 = $p->look_down(_tag => q{a}); for my $anchor0 (@anchors0){ my $href0 = $anchor0->attr(q{href}); my $txt4 = $href0->as_text; if ($txt4=~ /ligplot\d\d_\d\d'/){ print $txt4, qq{\n}; push @href0, $txt4; } } $p->delete; }; my $u=1; foreach $txt4(@href0){ my $url5= "http://www.ebi.ac.uk$txt4[$u]"; $u=$u+1; #I need to download every file of EPE (as http://www.ebi.ac.uk/thornto +n-srv/databases/cgi-bin/pdbsum/RunLigplot.pl?pdb=2j6p&amp;file=ligplo +t04_01 and http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum +/RunLigplot.pl?pdb=2j6p&amp;file=ligplot04_02) in this case, these ar +e my $url5 use LWP::Simple; my @files = (["$url5", "2j6p.$u.pl"], ["http://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/pdbsum/ +GetText.pl?pdb=2j6p&chain=A&seq_fasta=1?pdb=2j6p&chain=A&seq_fasta=1" +, "$path/$Dir/2j6p.seq.fasta"] ); for my $duplet (@files) { mirror($duplet->[0], $duplet->[1]); }

there'll be a synthax error because it wants me to puy "my" befor my var, but I've already put it and I don't actually know what does it want...maybe anyone can help me...sorry I'm going to take headache. Thanks a lot.


In reply to to repeat action for a cicle of files by paola82

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.