Skip to content
Snippets Groups Projects
Unverified Commit 05b5a87d authored by Kieron Taylor's avatar Kieron Taylor Committed by GitHub
Browse files

Merge pull request #293 from Ensembl/feature/xref_config

Feature/xref config
parents 170c0c41 77e32653
No related branches found
No related tags found
2 merge requests!342Feature/schema update 96,!342Feature/schema update 96
This diff is collapsed.
......@@ -112,6 +112,8 @@ foreach my $source_section ( sort( $config->GroupMembers('source') ) ) {
$source_ids{$source_section} = ++$source_id;
my $priority_description = defined $config->val( $source_section, 'prio_descr') ? $config->val ( $source_section, 'prio_descr') : '';
printf( "# Source '%s' (id = %d)\n", $source_name, $source_id );
print( "INSERT INTO source "
......@@ -123,7 +125,7 @@ foreach my $source_section ( sort( $config->GroupMembers('source') ) ) {
$config->val( $source_section, 'download' ),
$config->val( $source_section, 'order' ),
$config->val( $source_section, 'priority' ),
$config->val( $source_section, 'prio_descr' ),
$priority_description,
$config->val($source_section, 'status', 'NOIDEA') );
print("\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