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
cd9ab8bc
Commit
cd9ab8bc
authored
21 years ago
by
Graham McVicker
Browse files
Options
Downloads
Patches
Plain Diff
add more classes of mapping failure
parent
a2a4f6ae
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
misc-scripts/chimp/ErrCode.pm
+27
-8
27 additions, 8 deletions
misc-scripts/chimp/ErrCode.pm
with
27 additions
and
8 deletions
misc-scripts/chimp/ErrCode.pm
+
27
−
8
View file @
cd9ab8bc
...
...
@@ -9,7 +9,7 @@ use vars qw(@EXPORT_OK @ISA);
@ISA
=
qw(Exporter)
;
@EXPORT_OK
=
qw(&
set
_err &
get
_err &ec2str)
;
@EXPORT_OK
=
qw(&
push
_err &
pop
_err &ec2str)
;
use
constant
OK
=>
0
;
...
...
@@ -34,17 +34,27 @@ use constant TRANSCRIPT_SCAFFOLD_SPAN => 22;
use
constant
TRANSCRIPT_DOES_NOT_TRANSLATE
=>
30
;
use
constant
PART_EXON_CDS_DELETE_FIVE_PRIME_TOO_LONG
=>
40
;
use
constant
PART_EXON_CDS_DELETE_THREE_PRIME_TOO_LONG
=>
41
;
use
constant
PART_EXON_CDS_DELETE_MIDDLE_TOO_LONG
=>
42
;
my
$ERR
;
sub
set_err
{
$ERR
=
shift
;
my
@ERR_STACK
=
();
sub
push_err
{
my
$err
=
shift
||
return
;
my
$err_desc
=
shift
||
'';
push
@ERR_STACK
,
[
$err
,
$err_desc
];
}
sub
get_err
{
my
$cur_err
=
$ERR
;
$ERR
=
OK
;
return
$cur_err
;
sub
pop_err
{
my
(
$err
,
$err_desc
);
return
()
if
(
!
@ERR_STACK
);
my
$arref
=
pop
(
@ERR_STACK
);
return
@$arref
;
}
...
...
@@ -100,6 +110,15 @@ sub ec2str {
elsif
(
$ec
==
TRANSCRIPT_SCAFFOLD_SPAN
)
{
$str
=
'
Transcript spans multiple scaffolds.
';
}
elsif
(
$ec
==
PART_EXON_CDS_DELETE_FIVE_PRIME_TOO_LONG
)
{
$str
=
"
CDS deletion at 5' end of exon too long.
";
}
elsif
(
$ec
==
PART_EXON_CDS_DELETE_THREE_PRIME_TOO_LONG
)
{
$str
=
"
CDS deletion at 3' end of exon too long.
";
}
elsif
(
$ec
==
PART_EXON_CDS_DELETE_MIDDLE_TOO_LONG
)
{
$str
=
"
CDS deletion in middle of exon too long.
";
}
return
$str
;
}
...
...
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