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
19eed6f9
Commit
19eed6f9
authored
18 years ago
by
Patrick Meidl
Browse files
Options
Downloads
Patches
Plain Diff
bug fix
parent
1cc6bbf7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc-scripts/assembly/align_by_clone_identity.pl
+10
-11
10 additions, 11 deletions
misc-scripts/assembly/align_by_clone_identity.pl
with
10 additions
and
11 deletions
misc-scripts/assembly/align_by_clone_identity.pl
+
10
−
11
View file @
19eed6f9
...
...
@@ -68,16 +68,15 @@ The alignment is created in two steps:
2. Store non-aligned blocks in a temporary table (tmp_align). They can
later be aligned using blastz by align_nonident_regions.pl.
=head1 RELATED
SCRIPT
S
=head1 RELATED
FILE
S
The whole process of creating a whole genome alignment
is done by th
es
e
scripts:
The whole process of creating a whole genome alignment
between two assembli
es
is done by a series of scripts. Please see
ensembl/misc-scripts/assembly/load_alternative_assembly.pl
ensembl/misc-scripts/assembly/align_by_clone_identity.pl
ensembl/misc-scripts/assembly/align_nonident_regions.pl
ensembl/misc-scripts/assembly/README
See documention in the respective script for more information.
for a high-level description of this process, and POD in the individual scripts
for the details.
=head1 LICENCE
...
...
@@ -243,8 +242,8 @@ my $fmt5 = "%-40s%10s\n";
my
$fmt6
=
"
%-10s%-12s%-10s%-12s
\n
";
my
$sth1
=
$R_dbh
->
prepare
(
qq(
INSERT INTO assembly (asm_seq_region_id, cmp_seq_region_id,
asm_start,
asm_end, cmp_start, cmp_end, ori)
INSERT
IGNORE
INTO assembly (asm_seq_region_id, cmp_seq_region_id,
asm_start,
asm_end, cmp_start, cmp_end, ori)
VALUES (?, ?, ?, ?, ?, ?, 1)
)
);
my
$sth2
=
$R_dbh
->
prepare
(
qq(
...
...
@@ -659,10 +658,10 @@ sub found_nomatch {
# start a new non-align block
push
@
{
$nomatch
->
{
$R_chr
}
},
[
$A_seg
->
from_start
,
undef
,
$A_seg
->
from_end
,
$j
,
$R_seg
->
from_start
,
undef
,
$R_seg
->
from_end
,
$i
,
$A_chr
,
];
...
...
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