Skip to content
Snippets Groups Projects
Commit e50776c7 authored by James Allen's avatar James Allen
Browse files

Forgot to add CDS prefix for non-trans-spliced cases...

parent 8f383153
No related branches found
No related tags found
3 merge requests!88Master,!88Master,!88Master
......@@ -210,6 +210,8 @@ sub print_feature {
my $trans_spliced = $feature->transcript->get_all_Attributes('trans_spliced');
if (scalar(@$trans_spliced)) {
$value = $so_term . ':' . join('_', $value, $feature->seq_region_name, $feature->seq_region_strand);
} else {
$value = $so_term . ':' . $value;
}
} else {
$value = $so_term . ':' . $value;
......
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