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
8d355d92
Commit
8d355d92
authored
14 years ago
by
epaule
Browse files
Options
Downloads
Patches
Plain Diff
added a stableId generator for Pristionchus pacificus using WormBase ids
parent
3b78533f
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/IdMapping/StableIdGenerator/PristionchusPacificus.pm
+68
-0
68 additions, 0 deletions
...EMBL/IdMapping/StableIdGenerator/PristionchusPacificus.pm
with
68 additions
and
0 deletions
modules/Bio/EnsEMBL/IdMapping/StableIdGenerator/PristionchusPacificus.pm
0 → 100644
+
68
−
0
View file @
8d355d92
=head1 LICENSE
Copyright 2010, The WormBase Consortium. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE WORMBASE CONSORTIUM ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those of the
authors and should not be interpreted as representing official policies, either expressed
or implied, of The WormBase Consortium.
=head1 CONTACT
Please email comments or questions to the public WormBase
help list at <help@wormbase.org>.
=cut
package
Bio::EnsEMBL::IdMapping::StableIdGenerator::
PristionchusPacificus
;
# Class to generate WormBase conform Pristionchus IDs to be injected into the mapper
use
strict
;
use
warnings
;
use
base
qw(Bio::EnsEMBL::IdMapping::StableIdGenerator::EnsemblGeneric)
;
# PPAxxxxx
# ups the id by one
sub
increment_stable_id
{
my
(
$self
,
$lastId
)
=
@_
;
throw
("
invalid stable ID:
$lastId
.
")
unless
(
$lastId
=~
/PPA/
);
$lastId
=~
/^PPA(\d+)/
;
my
$number
=
$
1
+
1
;
my
$stable_id
=
sprintf
("
PPA%05d
",
$number
);
return
$stable_id
;
}
# just in case it is actually used somewhere
sub
is_valid
{
my
(
$self
,
$stableId
)
=
@_
;
if
(
defined
(
$stableId
)
&&
$stableId
=~
/^PPA\d+/
)
{
return
1
}
else
{
return
undef
}
}
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