Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
7eaf7e9c
Commit
7eaf7e9c
authored
Jun 07, 2010
by
Andreas Kusalananda Kähäri
Browse files
Fixed bug in fetch_all_by_Transcript() found by Amonida.
parent
cd77c210
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/Bio/EnsEMBL/DBSQL/TranslationAdaptor.pm
modules/Bio/EnsEMBL/DBSQL/TranslationAdaptor.pm
+2
-2
No files found.
modules/Bio/EnsEMBL/DBSQL/TranslationAdaptor.pm
View file @
7eaf7e9c
...
...
@@ -112,9 +112,9 @@ sub fetch_all_by_Transcript {
}
# Get the canonical translation.
my
$translations
=
$self
->
fetch_by_Transcript
(
$transcript
);
my
$translations
=
[
$self
->
fetch_by_Transcript
(
$transcript
)
]
;
if
(
!
defined
(
$translations
)
)
{
if
(
scalar
(
@
{
$translations
}
)
==
0
)
{
return
[]
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment