Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
70a8f0fa
Commit
70a8f0fa
authored
15 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
Correct documentation for cdna_coding_end() method.
parent
a0626bf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/PredictionTranscript.pm
+5
-5
5 additions, 5 deletions
modules/Bio/EnsEMBL/PredictionTranscript.pm
with
5 additions
and
5 deletions
modules/Bio/EnsEMBL/PredictionTranscript.pm
+
5
−
5
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
()
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment