Skip to content
Snippets Groups Projects
Commit 3aa529ce authored by Dan Sheppard's avatar Dan Sheppard
Browse files

Tightening checks in Vega for Selenoproteins.

First stage commit only. Partial functionality (detailed below), but works and reduces
chance of missing problems.

1. Made exception data structure richer for check_for_stops to allow a number of different
types of exception to to be expressed.

2. Added a new exception type, that of known TGA-stopping Sec-coding transcript.

3. Added data-structure to add_selcys stop checking to allow specification of known
TGA-stopping Sec-coding transcripts.
parent 67d0bb03
No related branches found
No related tags found
No related merge requests found
...@@ -205,7 +205,9 @@ sub get_havana_seleno_comments { ...@@ -205,7 +205,9 @@ sub get_havana_seleno_comments {
my ($obj,$comment) = split /=/; my ($obj,$comment) = split /=/;
$obj =~ s/^\s+|\s+$//g; $obj =~ s/^\s+|\s+$//g;
$comment =~ s/^\s+|\s+$//g; $comment =~ s/^\s+|\s+$//g;
$seen_translations->{$obj} = $comment; # We add the origin as now "seen" can come from a number of places, and have
# a number of consequences in different cases, not just discounted Secs from this method. -- ds23
$seen_translations->{$obj} = [ $comment,"notsec-havana" ];
} }
return $seen_translations; return $seen_translations;
} }
...@@ -263,7 +265,9 @@ sub check_for_stops { ...@@ -263,7 +265,9 @@ sub check_for_stops {
my $pseq = $peptide->seq; my $pseq = $peptide->seq;
my $orig_seq = $pseq; my $orig_seq = $pseq;
# (translate method trims stops from sequence end) # (translate method trims stops from sequence end)
next TRANS unless ($pseq =~ /\*/); next TRANS unless ($pseq =~ /\*/);
# warn sprintf("Stop codon is '%s'\n",substr($trans->translateable_seq,-3));
#$support->log_verbose("Stops found in $tsi ($tname)\n",1); #$support->log_verbose("Stops found in $tsi ($tname)\n",1);
$log_object->_save_log('log_verbose', '', $gsi, '', $tsi, '', "Stops found in $tsi ($tname)"); $log_object->_save_log('log_verbose', '', $gsi, '', $tsi, '', "Stops found in $tsi ($tname)");
...@@ -363,7 +367,11 @@ sub check_for_stops { ...@@ -363,7 +367,11 @@ sub check_for_stops {
} }
elsif (defined($offset) && ($offset=~/^\d+$/)){ elsif (defined($offset) && ($offset=~/^\d+$/)){
if ($offset == length($orig_seq)+1) { if ($offset == length($orig_seq)+1) {
$log_object->_save_log('log', '', $gene->stable_id, 'TRANSCRIPT', $tsi, '', "Annotated stop for transcript $tsi ($tname) \"$offset\" matches actual stop codon, sounds like an anacode bug to me [$mod_date]"); if($seen_transcripts->{$tsi}->[1] eq 'known-tga-stop') {
$log_object->_save_log('log', '', $gene->stable_id, 'TRANSCRIPT', $tsi, '', "Annotated stop for transcript $tsi ($tname) known to be a stop codon. Ok. [$mod_date]");
} else {
$log_object->_save_log('log_warning', '', $gene->stable_id, 'TRANSCRIPT', $tsi, '', "Annotated stop for transcript $tsi ($tname) \"$offset\" matches actual stop codon yet has no entry in script config to disambiguate it. Please investigate and add appropriate entry. [$mod_date]");
}
} }
else { else {
$log_object->_save_log('log_warning', '', $gene->stable_id, 'TRANSCRIPT', $tsi, 'VQCT_wrong_selC_coord', "Annotated stop for transcript $tsi ($tname) \"$offset\" does not match a TGA codon) [$mod_date]"); $log_object->_save_log('log_warning', '', $gene->stable_id, 'TRANSCRIPT', $tsi, 'VQCT_wrong_selC_coord', "Annotated stop for transcript $tsi ($tname) \"$offset\" does not match a TGA codon) [$mod_date]");
...@@ -379,9 +387,9 @@ sub check_for_stops { ...@@ -379,9 +387,9 @@ sub check_for_stops {
my $pos = $stop->[1]; my $pos = $stop->[1];
my $seq = $stop->[0]; my $seq = $stop->[0];
unless ( grep { $pos == $_} @annotated_stops) { unless ( grep { $pos == $_} @annotated_stops) {
if ($seen_transcripts->{$tsi}) { if ($seen_transcripts->{$tsi} && $seen_transcripts->{$tsi}->[1] eq 'notsec-havana') {
#$support->log_verbose("Transcript $tsi ($tname) has potential selenocysteines but has been discounted by annotators:\n\t".$seen_transcripts->{$tsi}.") [$mod_date]\n"); #$support->log_verbose("Transcript $tsi ($tname) has potential selenocysteines but has been discounted by annotators:\n\t".$seen_transcripts->{$tsi}.") [$mod_date]\n");
$log_object->_save_log('log_verbose', '', $gene->stable_id, '', $tsi, 'VQCT_pot_selC', "Transcript $tsi ($tname) has potential selenocysteines but has been discounted by annotators: ".$seen_transcripts->{$tsi}.") [$mod_date]"); $log_object->_save_log('log_verbose', '', $gene->stable_id, '', $tsi, 'VQCT_pot_selC', "Transcript $tsi ($tname) has potential selenocysteines but has been discounted by annotators: ".$seen_transcripts->{$tsi}->[0].") [$mod_date]");
} }
else { else {
#$support->log("POTENTIAL SELENO ($seq) in $tsi ($tname, gene $gname) found at $pos [$mod_date]\n"); #$support->log("POTENTIAL SELENO ($seq) in $tsi ($tname, gene $gname) found at $pos [$mod_date]\n");
......
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