Skip to content
Snippets Groups Projects
Commit 5c4fad5f authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Patch from Dan Staines to sorting of seq-edits.

parent 68ccef61
No related branches found
No related tags found
No related merge requests found
......@@ -955,18 +955,20 @@ sub get_all_SeqEdits {
=cut
sub modify_translation {
my ($self, $seq) = @_;
my ( $self, $seq ) = @_;
my @seqeds = @{$self->get_all_SeqEdits()};
my @seqeds = @{ $self->get_all_SeqEdits() };
# sort in reverse order to avoid complication of adjusting downstream edits
@seqeds = sort {$b <=> $a} @seqeds;
# Sort in reverse order to avoid complication of adjusting
# downstream edits.
@seqeds = sort { $b->start() <=> $a->start() } @seqeds;
# apply all edits
# Apply all edits.
my $peptide = $seq->seq();
foreach my $se (@seqeds) {
$se->apply_edit(\$peptide);
$se->apply_edit( \$peptide );
}
$seq->seq($peptide);
return $seq;
......
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