Skip to content
Snippets Groups Projects
Commit f3d27eca authored by Matthieu Muffato's avatar Matthieu Muffato Committed by Andy Yates
Browse files

Updated deprecated calls to get the sequence / alignment

parent 25a6a8d0
No related branches found
No related tags found
No related merge requests found
......@@ -287,7 +287,7 @@ sub _full_encoding {
$result->{align_seq} = $member->alignment_string();
}
elsif($seq_type eq 'cdna') {
$result->{align_seq} = $member->cdna_alignment_string();
$result->{align_seq} = $member->alignment_string('cds');
$result->{align_seq} =~ s/\s//g;
}
}
......@@ -296,7 +296,7 @@ sub _full_encoding {
$result->{seq} = $member->sequence();
}
elsif($seq_type eq 'cdna') {
$result->{seq} = $member->sequence_cds();
$result->{seq} = $member->other_sequence('cds');
}
}
return $result;
......
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