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
67500d08
Commit
67500d08
authored
23 years ago
by
Ewan Birney
Browse files
Options
Downloads
Patches
Plain Diff
added SimpleFeature easily
parent
fe37474f
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/SimpleFeature.pm
+78
-0
78 additions, 0 deletions
modules/Bio/EnsEMBL/SimpleFeature.pm
with
78 additions
and
0 deletions
modules/Bio/EnsEMBL/SimpleFeature.pm
0 → 100644
+
78
−
0
View file @
67500d08
#
# Ensembl module for Bio::EnsEMBL::SimpleFeature
#
# Cared for by Ewan Birney <birney@ebi.ac.uk>
#
# Copyright Ewan Birney
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::EnsEMBL::SimpleFeature - DESCRIPTION of Object
=head1 SYNOPSIS
Give standard usage here
=head1 DESCRIPTION
Describe the object here
=head1 AUTHOR - Ewan Birney
This modules is part of the Ensembl project http://www.ensembl.org
Email birney@ebi.ac.uk
Describe contact details here
=head1 APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _
=cut
# Let the code begin...
package
Bio::EnsEMBL::
SimpleFeature
;
use
vars
qw(@ISA)
;
use
strict
;
# Object preamble - inherits from Bio::Root::RootI
use
Bio::EnsEMBL::
SeqFeature
;
@ISA
=
qw(Bio::EnsEMBL::SeqFeature)
;
# new() is inherieted from SeqFeature
=head2 display_text
Title : display_text
Usage : $obj->display_text($newval)
Function:
Example :
Returns : value of display_text
Args : newvalue (optional)
=cut
sub
display_text
{
my
(
$self
,
$value
)
=
@_
;
if
(
defined
$value
)
{
$self
->
{'
display_text
'}
=
$value
;
}
return
$self
->
{'
display_text
'};
}
1
;
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