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
a6a7816b
Commit
a6a7816b
authored
13 years ago
by
Monika Komorowska
Browse files
Options
Downloads
Patches
Plain Diff
added section counting the size and mapping percentage of continuous runs of projections
parent
67a07432
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/assembly/mapping_stats.pl
+61
-30
61 additions, 30 deletions
misc-scripts/assembly/mapping_stats.pl
with
61 additions
and
30 deletions
misc-scripts/assembly/mapping_stats.pl
+
61
−
30
View file @
a6a7816b
...
...
@@ -47,30 +47,6 @@ Optional arguments:
This script prints some statistics about a whole genome alignment between two
assemblies, like the alignment coverage and length of alignment blocks.
=head1 RELATED FILES
The whole process of creating a whole genome alignment between two assemblies
is done by a series of scripts. Please see
ensembl/misc-scripts/assembly/README
for a high-level description of this process, and POD in the individual scripts
for the details.
=head1 LICENCE
This code is distributed under an Apache style licence:
Please see http://www.ensembl.org/code_licence.html for details
=head1 AUTHOR
Patrick Meidl <meidl@ebi.ac.uk>, Ensembl core API team
=head1 CONTACT
Please post comments/questions to the Ensembl development list
<dev@ensembl.org>
=cut
use
strict
;
...
...
@@ -186,22 +162,60 @@ foreach my $chr ($support->sort_chromosomes) {
my
%blocks
;
my
%blocklength
;
my
%cont_mapping_blocks
;
my
%cont_mapping_length
;
# toplevel seq_region length order of magnitude
my
$oom
=
length
(
$A_length
);
#seq region on the alternative assembly
my
$R_slice
=
$R_sa
->
fetch_by_region
(
$cs_name
,
$chr
,
undef
,
undef
,
undef
,
$support
->
param
('
altassembly
'));
my
$R_slice
=
$R_sa
->
fetch_by_region
(
$cs_name
,
$chr
);
my
@segments
=
@
{
$R_slice
->
project
(
$cs_name
,
$support
->
param
('
altassembly
'))
};
#seq region on the latest assembly
my
$R_new_assembly_slice
=
$R_sa
->
fetch_by_region
(
$cs_name
,
$chr
);
#map alternative assembly to latest
my
@segments
=
@
{
$R_slice
->
project
(
$cs_name
,
$support
->
param
('
assembly
'))
};
my
$alignments
=
0
;
my
$previous_sl
;
my
$cont_mapping_length
=
0
;
foreach
my
$seg
(
@segments
)
{
my
$sl
=
$seg
->
to_Slice
;
# ignore PAR region (i.e. we project to the symlinked seq_region)
next
if
(
$sl
->
seq_region_name
ne
$chr
);
#
next if ($sl->seq_region_name ne $chr);
my
$l
=
$sl
->
length
;
$mapping_length
+=
$l
;
if
(
$previous_sl
)
{
#if current slice is on the same chromosome and within 10bps of the previous slice
#add it to the continuous mapping length
if
(
$previous_sl
->
seq_region_name
eq
$sl
->
seq_region_name
&&
abs
(
$previous_sl
->
end
-
$sl
->
start
)
<=
10
)
{
$cont_mapping_length
+=
$l
;
}
else
{
my
$c_oom
=
$oom
;
while
(
$c_oom
)
{
if
(
$cont_mapping_length
>
10
**
(
$c_oom
-
1
)
and
$cont_mapping_length
<=
10
**$c_oom
)
{
$cont_mapping_blocks
{
10
**$c_oom
}
++
;
$cont_mapping_length
{
10
**$c_oom
}
+=
$cont_mapping_length
;
}
$c_oom
--
;
}
if
(
$cont_mapping_length
==
1
)
{
$cont_mapping_blocks
{
10
}
++
;
$cont_mapping_length
{
10
}
++
}
$cont_mapping_length
=
$l
;
}
}
else
{
$cont_mapping_length
=
$l
;
}
my
$c_oom
=
$oom
;
...
...
@@ -212,8 +226,12 @@ foreach my $chr ($support->sort_chromosomes) {
}
$c_oom
--
;
}
$blocks
{
10
}
++
if
(
$l
==
1
);
if
(
$l
==
1
)
{
$blocks
{
10
}
++
;
$blocklength
{
10
}
++
;
}
$previous_sl
=
$sl
;
$alignments
++
;
}
...
...
@@ -221,7 +239,7 @@ foreach my $chr ($support->sort_chromosomes) {
$support
->
log
("
\n
");
$support
->
log
(
sprintf
(
$fmt1
,
"
Reference toplevel seq_region length:
",
$support
->
commify
(
$R_slice
->
length
)),
2
);
$support
->
commify
(
$R_
new_assembly_
slice
->
length
)),
2
);
$support
->
log
(
sprintf
(
$fmt1
,
"
Alternative toplevel seq_region length:
",
$support
->
commify
(
$A_chr_length
)),
2
);
$support
->
log
(
sprintf
(
$fmt1
,
"
Non-N sequence length (alternative):
",
...
...
@@ -244,6 +262,19 @@ foreach my $chr ($support->sort_chromosomes) {
}
$support
->
log
("
\n
");
$support
->
log
(
sprintf
(
$fmt4
,
"
Continuous alignment runs (gaps up to 10bp):
",
$alignments
,
"
Mapping %
"),
2
);
if
(
$alignments
)
{
for
(
my
$i
=
0
;
$i
<
$oom
;
$i
++
)
{
my
$from
=
10
**$i
;
my
$to
=
10
**
(
$i
+
1
);
$support
->
log
(
sprintf
(
$fmt3
,
"
"
.
$support
->
commify
(
$from
)
.
"
-
"
.
$support
->
commify
(
$to
)
.
"
bp:
",
$cont_mapping_blocks
{
$to
},
$cont_mapping_length
{
$to
}
/
$A_length
*
100
),
2
);
}
}
$support
->
log
("
\n
");
}
...
...
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