Skip to content
Snippets Groups Projects
Commit eafd9092 authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

Removed reference to $SERVERROOT because it's just confusing and makes things...

Removed reference to $SERVERROOT because it's just confusing and makes things harder. Just have your Perl5Lib properly set.
parent c223d7fe
No related branches found
No related tags found
No related merge requests found
......@@ -82,22 +82,17 @@ use strict;
use warnings;
no warnings 'uninitialized';
use FindBin qw($Bin);
use vars qw($SERVERROOT);
BEGIN {
$SERVERROOT = "$Bin/../../..";
unshift(@INC, "$SERVERROOT/ensembl/modules");
unshift(@INC, "$SERVERROOT/bioperl-live");
}
use Getopt::Long;
use Pod::Usage;
use Bio::EnsEMBL::Utils::ConversionSupport;
use Cwd;
$| = 1;
my $support = new Bio::EnsEMBL::Utils::ConversionSupport($SERVERROOT);
my $path = getcwd;
my $support = new Bio::EnsEMBL::Utils::ConversionSupport($path);
# parse options
$support->parse_common_options(@_);
......
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