[Bioperl-l] update to Bio::Tools::Run::EMBOSSacd

smontgom at bcgsc.ca smontgom at bcgsc.ca
Mon Oct 25 23:33:06 EDT 2004


Yo -

Can I pass on this code snippet for a CVS commit?

The newer version of EMBOSS removes the acdc parameter -acdtable.

So the Bio::Tools::Run::EMBOSSacd module needs this snippet added at line
158 (after the reset of the hash %OPT)


    my $version = `embossversion`;
    my $file;
    if ($version lt "2.8.0") {
        # reading from EMBOSS program acdc stdout (previous to version 2.8.0)
       $file = `acdc $prog -help -verbose -acdtable 2>&1`;
    }
    else {
        # reading from EMBOSS program acdtable stdout (equal to after 2.8.0)
        $file = `acdtable $prog -help -verbose 2>&1`;
    }



Cheers,
Stephen


More information about the Bioperl-l mailing list