Skip to content
Snippets Groups Projects
Commit 69895b28 authored by Andy Yates's avatar Andy Yates
Browse files

Only allow a biotype if it had coding in there & not non_ which would negate the coding

parent c7bd5141
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ foreach my $name (@dbnames) {
while (my $gene = shift(@{$genes})) {
my $biotype = $gene->biotype();
if( $biotype =~ /coding/i ) {
if( $biotype =~ /coding/i && $biotype !~ /non_/i) {
if($gene->is_known()) {
$biotype = "known ".$biotype;
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment