# something like this
my $query = new Bio::Seq(-file => $queryfile,
-format => 'Fasta');
my $hmm = Bio::EnsEMBL::Analysis::Runnable::ProteinAnnotation::Genes3d->new
('-query' => $query,
'-program' => 'hmmpfam' or '/usr/local/pubseq/bin/hmmpfam',
'-database' => 'Pfam');
$hmm->workdir ($workdir);
$hmm->run;
my @results = $hmm->output;
sub parse_results
{ my ($self) = @_;
my $filehandle;
my $resfile = $self->resultsfile();
my @fps;
if (-e $resfile) {
if (-z $resfile) {
print STDERR "Genes3D didn't find any hits\n";
return; }
else {
open (CPGOUT, "<$resfile") or $self->throw("Error opening ", $resfile, "\n "); }
}
my $id;
while (<CPGOUT>) {
chomp;
last if /^Alignments of top-scoring domains/;
next if (/^Model/ || /^\-/ || /^$/);
if (/^Query sequence:\s+(\S+)/) {
$id = $1;
}
if (my ($hid, $start, $end, $hstart, $hend, $score, $evalue) = /^(\S+)\s+\S+\s+(\d+)\s+(\d+)\s+\S+\s+(\d+)\s+(\d+)\s+\S+\s+(\S+)\s+(\S+)/) {
my $fp= $self->create_protein_feature($start,$end,$score,$id,$hstart,$hend,$hid,$self->analysis, sprintf("%.3e", $evalue),0);
push @fps,$fp;
}
}
close (CPGOUT);
$self->output(\@fps);
}
1; } |
sub run_analysis
{ my ($self) = @_;
print STDERR "running ".$self->program." against ".$self->database."\n";
my @dbfiles = split(/;/,$self->analysis->db_file);
print STDERR "FILENAME: ".$self->queryfile."\n";
my $cmd = $self->program .' '.
'--acc -E 59.5 -A 100 '.
$self->options .' '.
$dbfiles[0] .' '.
$self->queryfile.' > '.
$self->resultsfile;
print STDERR "$cmd\n";
$self->throw ("Error running ".$self->program." on ".$self->filename." against ".$dbfiles[0])
unless ((system ($cmd)) == 0); } |