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

Added the missing help function trigger

parent 99a3b25e
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ use Bio::EnsEMBL::DBSQL::DBAdaptor;
my ($host, $port, $dbname, $user,$pass);
my ($dnahost, $dnaport, $dnadbname, $dnauser, $dnapass);
my ($ccds_host, $ccds_dbname, $ccds_user, $ccds_port, $ccds_pass);
my $log_path;
my ($log_path,$help);
my $coord_system_name;
my $seq_region_name;
......@@ -50,8 +50,11 @@ GetOptions( 'dbhost:s' => \$host,
'include_non_ref!' => \$include_non_ref,
'include_duplicates' => \$include_duplicates,
'verbose!' => \$verbose,
'log:s' => \$log_path,); # log file used for analysing choices in bulk
'log:s' => \$log_path, # log file used for analysing choices in bulk
'help!' => \$help,
'h!' => \$help);
if ($help) { &usage; exit;}
unless ($write) {
print "You have not used the -write option "
. "so results will not be written into the database\n";
......
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