Parcourir la source

Added support for GBRowse links

E.Cannon il y a 9 ans
Parent
commit
b613257142
1 fichiers modifiés avec 8 ajouts et 1 suppressions
  1. 8 1
      blast_ui.install

+ 8 - 1
blast_ui.install

@@ -67,11 +67,19 @@ function blast_ui_schema(){
         'length' => 50,
         'length' => 50,
         'not null' => true,
         'not null' => true,
         'default' => 'link'
         'default' => 'link'
+      ),
+	    'gbrowse_path' => array(
+        'description' => t('The gbrowse URL in the website of the target database.'),
+        'type' => 'varchar',
+        'length' => 1023,
+        'not null' => true,
       ),
       ),
     ),
     ),
+    
     'indexes' => array(
     'indexes' => array(
       'name' => array('name'),
       'name' => array('name'),
     ),
     ),
+    
     'primary key' => array('nid'),
     'primary key' => array('nid'),
     'unique keys' => array(
     'unique keys' => array(
        'nid' => array('nid'),
        'nid' => array('nid'),
@@ -79,7 +87,6 @@ function blast_ui_schema(){
   );
   );
 
 
   return $schema;
   return $schema;
-
 }
 }
 
 
 /**
 /**