Skip to content
Snippets Groups Projects
Commit c288810c authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Get a XrefParser::BaseParser object and call its run() method rather

than calling the run() method as a class method.
parent 33c4a43c
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,9 @@ if ( !$user || !$host || !$dbname ) {
exit(1);
}
XrefParser::BaseParser::run(
my $base_parser = XrefParser::BaseParser->new();
$base_parser->run(
$host, ( defined $port ? $port : '3306' ),
$dbname, $user,
$pass, \@species,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment