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
3f0499ff
Commit
3f0499ff
authored
16 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
Updated, and with added POD.
parent
dd770403
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/Bio/EnsEMBL/Collection/Exon.pm
+49
-6
49 additions, 6 deletions
modules/Bio/EnsEMBL/Collection/Exon.pm
modules/Bio/EnsEMBL/Collection/RepeatFeature.pm
+41
-6
41 additions, 6 deletions
modules/Bio/EnsEMBL/Collection/RepeatFeature.pm
with
90 additions
and
12 deletions
modules/Bio/EnsEMBL/Collection/Exon.pm
+
49
−
6
View file @
3f0499ff
...
...
@@ -2,6 +2,53 @@
package
Bio::EnsEMBL::Collection::
Exon
;
=head1 NAME
Bio::EnsEMBL::Collection::Exon - Feature collection implementation for
exon features.
=head1 DESCRIPTION
=head2 Extended feature representation
An exon is represented by the basic feature representation (see
documentation of Bio::EnsEMBL::Collection) and by the following extended
feature representation:
=over 4
=item 1.
Phase
=item 2.
End phase
=item 3.
Stable ID
=item 4.
Version
=item 5.
Created date
=item 6.
Modified date
=item 7.
Is-current
=back
=cut
use
strict
;
use
warnings
;
...
...
@@ -48,9 +95,7 @@ sub _tables {
my
@tables
=
$this
->
SUPER::
_tables
();
if
(
$this
->
_lightweight
()
)
{
return
(
$tables
[
0
]
);
}
if
(
$this
->
_lightweight
()
)
{
return
(
$tables
[
0
]
)
}
return
@tables
;
}
...
...
@@ -70,9 +115,7 @@ sub _columns {
sub
_default_where_clause
{
my
(
$this
)
=
@_
;
if
(
$this
->
_lightweight
()
)
{
return
'';
}
if
(
$this
->
_lightweight
()
)
{
return
''
}
return
$this
->
SUPER::
_default_where_clause
();
}
...
...
This diff is collapsed.
Click to expand it.
modules/Bio/EnsEMBL/Collection/RepeatFeature.pm
+
41
−
6
View file @
3f0499ff
...
...
@@ -2,6 +2,45 @@
package
Bio::EnsEMBL::Collection::
RepeatFeature
;
=head1 NAME
Bio::EnsEMBL::Collection::Exon - Feature collection implementation for
repeat features.
=head1 DESCRIPTION
=head2 Extended feature representation
A repeat feature is represented by the basic feature representation (see
documentation of Bio::EnsEMBL::Collection) and by the following extended
feature representation:
=over 4
=item 1.
Hit start
=item 2.
Hit end
=item 3.
Score
=item 4.
Repeat consensus internal ID
=item 5.
Analysis internal ID
=back
=cut
use
strict
;
use
warnings
;
...
...
@@ -53,9 +92,7 @@ sub _tables {
my
@tables
=
$this
->
SUPER::
_tables
();
if
(
$this
->
_lightweight
()
)
{
return
(
$tables
[
0
]
);
}
if
(
$this
->
_lightweight
()
)
{
return
(
$tables
[
0
]
)
}
return
@tables
;
}
...
...
@@ -75,9 +112,7 @@ sub _columns {
sub
_default_where_clause
{
my
(
$this
)
=
@_
;
if
(
$this
->
_lightweight
()
)
{
return
'';
}
if
(
$this
->
_lightweight
()
)
{
return
''
}
return
$this
->
SUPER::
_default_where_clause
();
}
...
...
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