Skip to content

Commit

Permalink
Merge branch 'patch-2' of https://github.com/billzt/jbrowse into bill…
Browse files Browse the repository at this point in the history
…zt-patch-2
  • Loading branch information
cmdcolin committed Jul 11, 2018
2 parents 5d9c538 + 84e17f8 commit 5f4a8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/perl5/Bio/JBrowse/Cmd/IndexNames.pm
Expand Up @@ -605,7 +605,7 @@ sub make_names_iterator {
$feature = gff3_parse_feature($line);
my $Name = $feature->{attributes}{Name} || [];
my $ID = $feature->{attributes}{ID} || [];
@names = $Name->[0] ? @$Name : @$ID;
@names = $Name->[0] ? (@$Name, @$ID) : @$ID;
last if scalar @names;
}
}
Expand Down

0 comments on commit 5f4a8db

Please sign in to comment.