1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/a0165dfc5664/ changeset: r5496:a0165dfc5664 user: jgoecks date: 2011-05-03 15:45:40 summary: Fix bug in 'Filter GTF data by attribute values list' tool. affected #: 1 file (41 bytes) --- a/tools/filters/gff/gtf_filter_by_attribute_values_list.py Mon May 02 17:35:06 2011 -0400 +++ b/tools/filters/gff/gtf_filter_by_attribute_values_list.py Tue May 03 09:45:40 2011 -0400 @@ -54,7 +54,7 @@ for line in open( gff_file ): fields = line.split( '\t' ) attributes = parse_gff_attributes( fields[8] ) - if attributes[ attribute_name ] in ids_dict: + if ( attribute_name in attributes ) and ( attributes[ attribute_name ] in ids_dict ): output.write( line ) output.close() 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.