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
70a8f0fa
Commit
70a8f0fa
authored
Mar 31, 2010
by
Andreas Kusalananda Kähäri
Browse files
Correct documentation for cdna_coding_end() method.
parent
a0626bf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/Bio/EnsEMBL/PredictionTranscript.pm
modules/Bio/EnsEMBL/PredictionTranscript.pm
+5
-5
No files found.
modules/Bio/EnsEMBL/PredictionTranscript.pm
View file @
70a8f0fa
...
...
@@ -346,7 +346,7 @@ sub translate {
=head2 cdna_coding_start
Arg [1] : none
Example : $relative_coding_start = $transcript->cdna_coding_start;
Example : $relative_coding_start = $transcript->cdna_coding_start
()
;
Description: Retrieves the position of the coding start of this transcript
in cdna coordinates (relative to the start of the 5prime end of
the transcript, excluding introns, including utrs). This is
...
...
@@ -358,14 +358,14 @@ sub translate {
=cut
sub
cdna_coding_start
{
return
1
;
}
sub
cdna_coding_start
{
return
1
}
=head2 cdna_coding_end
Arg [1] : none
Example : $relative_coding_start = $transcript->cdna_coding_
start
;
Example : $relative_coding_start = $transcript->cdna_coding_
end()
;
Description: Retrieves the position of the coding end of this transcript
in cdna coordinates (relative to the start of the 5prime end of
the transcript, excluding introns, including utrs). This is
...
...
@@ -379,8 +379,8 @@ sub cdna_coding_start { return 1; }
=cut
sub
cdna_coding_end
{
my
$self
=
shift
;
return
length
(
$self
->
spliced_seq
);
my
(
$self
)
=
@_
;
return
length
(
$self
->
spliced_seq
()
);
}
...
...
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