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
bf89e13e
Commit
bf89e13e
authored
18 years ago
by
Steve Trevanion
Browse files
Options
Downloads
Patches
Plain Diff
merge from branch-vega-39-dev
parent
447abd72
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
misc-scripts/attribute_types/attrib_type.txt
+5
-5
5 additions, 5 deletions
misc-scripts/attribute_types/attrib_type.txt
misc-scripts/density_feature/vega_gene_density.pl
+11
-11
11 additions, 11 deletions
misc-scripts/density_feature/vega_gene_density.pl
with
16 additions
and
16 deletions
misc-scripts/attribute_types/attrib_type.txt
+
5
−
5
View file @
bf89e13e
...
...
@@ -105,11 +105,11 @@
34 NovelPTCount processed_transcript_NOVEL Number of Novel Processed Transcripts
35 PutPTCount processed_transcript_PUTATIVE Number of Putative Processed Transcripts
36 PredPCCount protein_coding_PREDICTED Number of Predicted Protein Coding
37 IgSegCount total_Ig_segment_ Number of Ig Segments
38 IgPsSegCount Ig_pseudogene_segment_ Number of Ig Pseudogene Segments
39 TotPsCount total_pseudogene_ Number of Pseudogenes
40 ProcPsCount processed_pseudogene_ Number of Processed pseudogenes
41 UnprocPsCount unprocessed_pseudogene_ Number of Unprocessed pseudogenes
37 IgSegCount total_Ig_segment_
UNKNOWN
Number of Ig Segments
38 IgPsSegCount Ig_pseudogene_segment_
UNKNOWN
Number of Ig Pseudogene Segments
39 TotPsCount total_pseudogene_
UNKNOWN
Number of Pseudogenes
40 ProcPsCount processed_pseudogene_
UNKNOWN
Number of Processed pseudogenes
41 UnprocPsCount unprocessed_pseudogene_
UNKNOWN
Number of Unprocessed pseudogenes
42 KnwnPCProgCount protein_coding_in_progress_KNOWN Number of Known Protein coding genes in progress
43 NovPCProgCount protein_coding_in_progress_NOVEL Number of Novel Protein coding genes in progress
...
...
This diff is collapsed.
Click to expand it.
misc-scripts/density_feature/vega_gene_density.pl
+
11
−
11
View file @
bf89e13e
...
...
@@ -296,7 +296,7 @@ foreach my $block_size (keys %{ $chr_slices }) {
);
push
@attribs
,
Bio::EnsEMBL::
Attribute
->
new
(
-
NAME
=>
'
total_Ig_segment_
',
-
NAME
=>
'
total_Ig_segment_
UNKNOWN
',
-
CODE
=>
'
IgSegCount
',
-
VALUE
=>
$total
{'
Ig_segment_NOVEL
'}
+
$total
{'
Ig_segment_KNOWN
'}
||
0
,
...
...
@@ -304,32 +304,32 @@ foreach my $block_size (keys %{ $chr_slices }) {
);
push
@attribs
,
Bio::EnsEMBL::
Attribute
->
new
(
-
NAME
=>
'
Ig_pseudogene_segment_
',
-
NAME
=>
'
Ig_pseudogene_segment_
UNKNOWN
',
-
CODE
=>
'
IgPsSegCount
',
-
VALUE
=>
$total
{'
Ig_pseudogene_segment_
'}
||
0
,
-
VALUE
=>
$total
{'
Ig_pseudogene_segment_
UNKNOWN
'}
||
0
,
-
DESCRIPTION
=>
'
Number of Ig Pseudogene Segments
'
);
push
@attribs
,
Bio::EnsEMBL::
Attribute
->
new
(
-
NAME
=>
'
total_pseudogene_
',
-
NAME
=>
'
total_pseudogene_
UNKNOWN
',
-
CODE
=>
'
TotPsCount
',
-
VALUE
=>
(
$total
{'
pseudogene_
'}
+
$total
{'
processed_pseudogene_
'}
+
$total
{'
unprocessed_pseudogene_
'})
||
0
,
-
VALUE
=>
(
$total
{'
pseudogene_
UNKNOWN
'}
+
$total
{'
processed_pseudogene_
UNKNOWN
'}
+
$total
{'
unprocessed_pseudogene_
UNKNOWN
'})
||
0
,
-
DESCRIPTION
=>
'
Total Number of Pseudogenes
'
);
push
@attribs
,
Bio::EnsEMBL::
Attribute
->
new
(
-
NAME
=>
'
processed_pseudogene_
',
-
NAME
=>
'
processed_pseudogene_
UNKNOWN
',
-
CODE
=>
'
ProcPsCount
',
-
VALUE
=>
$total
{'
processed_pseudogene_
'}
||
0
,
-
VALUE
=>
$total
{'
processed_pseudogene_
UNKNOWN
'}
||
0
,
-
DESCRIPTION
=>
'
Number of Processed pseudogenes
'
);
push
@attribs
,
Bio::EnsEMBL::
Attribute
->
new
(
-
NAME
=>
'
unprocessed_pseudogene_
',
-
NAME
=>
'
unprocessed_pseudogene_
UNKNOWN
',
-
CODE
=>
'
UnprocPsCount
',
-
VALUE
=>
$total
{'
unprocessed_pseudogene_
'}
||
0
,
-
VALUE
=>
$total
{'
unprocessed_pseudogene_
UNKNOWN
'}
||
0
,
-
DESCRIPTION
=>
'
Number of Unprocessed pseudogenes
'
);
...
...
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