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
5967f670
Commit
5967f670
authored
13 years ago
by
Kieron Taylor
Browse files
Options
Downloads
Patches
Plain Diff
Added more groupings for use in FASTA dumping.
parent
8825e99e
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/Utils/BiotypeMapper.pm
+30
-1
30 additions, 1 deletion
modules/Bio/EnsEMBL/Utils/BiotypeMapper.pm
with
30 additions
and
1 deletion
modules/Bio/EnsEMBL/Utils/BiotypeMapper.pm
+
30
−
1
View file @
5967f670
...
...
@@ -118,8 +118,37 @@ my %feature_so_mapping = (
'
Bio::EnsEMBL::Funcgen::RegulatoryFeature
'
=>
'
SO:0001679
',
# transcription_regulatory_region
);
my
%grouping_of_biotypes
=
(
# Genebuilder/Havana categorisation
'
protein_coding
'
=>
[
qw( protein_coding polymorphic_pseudogene )
],
'
pseudogene
'
=>
[
qw( pseudogene retrotransposed )
],
'
long_noncoding
'
=>
[
qw( 3prime_overlapping_ncrna antisense lincRNA ncrna_host non_coding
processed_transcript sense_intronic sense_overlapping
)
],
'
short_noncoding
'
=>
[
qw( miRNA miRNA_pseudogene misc_RNA misc_RNA_pseudogene Mt_tRNA
Mt_tRNA_pseudogene rRNA rRNA_pseudogene scRNA_pseudogene snoRNA
snoRNA_pseudogene snRNA snRNA_pseudogene tRNA_pseudogene
)
],
# practical Ensembl core categories for fasta dumping
'
cDNA
'
=>
[
qw( protein_coding polymorphic_pseudogene IG_V_gene TR_V_gene
IG_J_gene TR_J_gene IG_D_gene IG_C_gene TR_C_gene pseudogene
retrotransposed IG_V_pseudogene TR_V_pseudogene
IG_J_pseudogene IG_C_pseudogene
)
],
'
peptide_producing
'
=>
[
qw( protein_coding polymorphic_pseudogene IG_V_gene TR_V_gene
IG_J_gene TR_J_gene IG_D_gene IG_C_gene TR_C_gene
)
],
'
ncRNA
'
=>
[
qw( ncRNA miRNA miRNA_pseudogene misc_RNA misc_RNA_pseudogene Mt_tRNA
Mt_tRNA_pseudogene Mt_rRNA rRNA rRNA_pseudogene scRNA_pseudogene
snoRNA snoRNA_pseudogene snRNA snRNA_pseudogene tRNA_pseudogene
3prime_overlapping_ncrna antisense lincRNA ncrna_host non_coding
processed_transcript sense_intronic sense_overlapping tRNA
)
],
);
my
%biotype_grouping
=
(
'
protein
-
coding
'
=>
'
protein_coding
',
'
protein
_
coding
'
=>
'
protein_coding
',
'
polymorphic_pseudogene
'
=>
'
protein_coding
',
'
pseudogene
'
=>
'
pseudogene
',
'
retrotransposed
'
=>
'
pseudogene
',
...
...
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