Browse Source

Fixed get sequence drush command

spficklin 12 years ago
parent
commit
74ab2abeff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_feature/tripal_feature.drush.inc

+ 1 - 1
tripal_feature/tripal_feature.drush.inc

@@ -79,7 +79,7 @@ function drush_tripal_feature_tripal_get_sequence() {
 
   // get the list of features
   $vars = array();
-  $sql  = "SELECT DISTINCT F.feature_id, F.name ".
+  $sql  = "SELECT DISTINCT F.feature_id, F.name, F.uniquename ".
           "FROM feature F ".
           "  INNER JOIN organism O on O.organism_id = F.organism_id ".
           "  INNER JOIN cvterm CVT on CVT.cvterm_id = F.type_id ";