Updates to not depend on an environment variable to figure out where libraries are (helpful for installation at the Sanger).

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3655 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2010-06-28 15:46:41 +00:00
parent 9a24598a98
commit 26ef1f84bf
8 changed files with 24 additions and 8 deletions

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
my %args = &getCommandArguments("DIR" => undef, "OUT" => undef);

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use DistributedMake;
use DataTable;

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use DistributedMake;
use DataTable;

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
my %args = &getCommandArguments("VCF" => undef, "OUT" => "/dev/stdout");

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use File::Basename;
use DistributedMake;

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use DistributedMake;
use DataTable;

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use DistributedMake;
use Data::Dumper;

View File

@ -1,7 +1,9 @@
#!/usr/bin/perl -w
use strict;
use lib "$ENV{'STING_DIR'}/perl";
use FindBin;
use lib "$FindBin::Bin/../../";
use StingArgs;
use Data::Dumper;