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

Adding the new attributes for showing a lack of detected cds and mrna end

parent ba7b4eab
No related branches found
No related tags found
No related merge requests found
......@@ -428,6 +428,15 @@ sub _print_attribs {
print $fh qq{ tag "seleno";};
}
if($transcript && $transcript->isa('Bio::EnsEMBL::Transcript')) {
foreach my $tag (qw/cds_end_NF cds_start_NF mRNA_end_NF mRNA_start_NF/) {
my $attributes = $transcript->get_all_Attributes($tag);
if(@{$attributes}) {
print $fh qq{ tag "${tag}";};
}
}
}
return;
} ## end sub _print_attribs
......
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