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:
parent
9a24598a98
commit
26ef1f84bf
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue