I have an ID code representative of a protein. There is website called InterPro that is used to deal with proteins related information. URL for that website contains that particular code. By changing that code in that URL I can get information about any protein. I developed a script in perl to get information directly from web. I used following code
my $uniprot= "P15700";
my $resp= '';
my $url= "http://wwwdev.ebi.ac.uk/interpro/ISearch?query=$uniprot+";
my $file = "$uniprot";
$resp = getstore( $url, $file );
exit;
}
In this example P15700 is that unique ID of protein and the url is http://wwwdev.ebi.ac.uk/interpro/ISearch?query=P15700+. Now this will retrieve whole html page. But, I need a particular information on that page which under the heading of "protein family membership". Like in this example If you open this link you can find "Adenylate kinase" written under heading of protein family membership. I just neeed to that information in another output text file displaying a table in which one column says ID and other says that information under protein family membership. I am new to perl and I don't have computer science background. Rather I am a biologist. So, I want to know whether the above mentioned task can be done using perl. If yes, How? I ll be grateful if anyone can solve this problem.