commit/galaxy-central: jgoecks: Fix GFF3 reader bug.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/1f9173561795/ changeset: 1f9173561795 branches: user: jgoecks date: 2011-06-06 22:17:09 summary: Fix GFF3 reader bug. affected #: 1 file (10 bytes) --- a/lib/galaxy/datatypes/util/gff_util.py Mon Jun 06 15:45:16 2011 -0400 +++ b/lib/galaxy/datatypes/util/gff_util.py Mon Jun 06 16:17:09 2011 -0400 @@ -217,7 +217,7 @@ # GFF3 test: parent_id = interval.attributes.get( 'Parent', None ) cur_id = interval.attributes.get( 'ID', None ) - if feature_id and parent_id != feature_parent_id and feature_id != cur_id: + if ( cur_id and cur_id != feature_id ) or ( parent_id and parent_id != feature_id ): break # GTF test: gene_id = interval.attributes.get( 'gene_id', None ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket