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
4e203e91
Commit
4e203e91
authored
23 years ago
by
Philip Lijnzaad
Browse files
Options
Downloads
Patches
Plain Diff
dumping of contig_landMarkMarkers was missing. also using strict now.
parent
e9298935
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/utilities/make_dbdump_bychr.pl
+18
-4
18 additions, 4 deletions
misc-scripts/utilities/make_dbdump_bychr.pl
with
18 additions
and
4 deletions
misc-scripts/utilities/make_dbdump_bychr.pl
+
18
−
4
View file @
4e203e91
...
...
@@ -24,6 +24,8 @@ a particular chromosome. Useful to create a small but fully functional
EnsEMBL db (e.g. laptop mini-mirror)
=cut
use
strict
;
use
Bio::EnsEMBL::
DBLoader
;
use
Getopt::
Long
;
...
...
@@ -64,7 +66,7 @@ if ($lim) {
}
my
$locator
=
"
$module
/host=
$host
;port=;dbname=
$dbname
;user=
$dbuser
;pass=
$dbpass
";
$db
=
Bio::EnsEMBL::
DBLoader
->
new
(
$locator
);
my
$db
=
Bio::EnsEMBL::
DBLoader
->
new
(
$locator
);
$db
->
{
RaiseError
}
++
;
# carp as soon as something wrong
unless
(
-
d
$workdir
)
{
...
...
@@ -78,10 +80,10 @@ print STDERR "Dumping data from small tables needed full:\n";
my
@small_tables
=
qw(analysis analysisprocess chromosome externalDB meta
species interpro interpro_description)
;
$"
=
'
';
$command
=
"
$mysqldump
-u
$dbuser
$pass_arg
-T
$workdir
$dbname
@small_tables
";
my
$command
=
"
$mysqldump
-u
$dbuser
$pass_arg
-T
$workdir
$dbname
@small_tables
";
system
(
$command
)
&&
die
"
``
$command
'' exited with exit status $?
";
my
$command
=
"
rm
$workdir
/*.sql
";
$command
=
"
rm
$workdir
/*.sql
";
system
(
$command
)
&&
die
"
``
$command
'' exited with exit status $?
";
#Dump schema
...
...
@@ -100,6 +102,18 @@ my ($chrom) = $sth->fetchrow_array;
$sth
=
$db
->
prepare
("
select * from map_density where chrname = '
$chr
' into outfile '
$workdir
/map_density.txt'
");
$sth
->
execute
;
warn
"
Finding markers for chromosome
$chr
\n
";
my
$q
=
"
select * from contig_landmarkMarker where chr_name = '
$chr
'
";
$sth
=
$db
->
prepare
(
$q
);
$sth
->
execute
;
open
(
FILE
,"
>
$workdir
/contig_landmarkMarker.txt
")
||
die
"";
while
(
(
my
$arr
=
$sth
->
fetchrow_arrayref
())
)
{
my
@array
=
@$arr
;
print
FILE
join
("
\t
",
@array
)
.
"
\n
";
}
close
(
FILE
);
print
STDERR
"
Finding golden path contigs for chromosome
$chr
\n
";
my
$golden_path_q
=
"
select * from static_golden_path where chr_name = '
$chr
'
$limit
";
$sth
=
$db
->
prepare
(
$golden_path_q
);
...
...
@@ -118,7 +132,6 @@ close (FILE);
die
"
no contigs found for ``
$golden_path_q
''
"
unless
@contig_ids
;
my
$contig_list
=
&get_inlist
(
0
,
@contig_ids
);
$contig_list
=
&get_inlist
(
0
,
@contig_ids
)
if
@contigs
;
$sth
=
$db
->
prepare
("
select * from contig where internal_id in
$contig_list
");
$sth
->
execute
;
...
...
@@ -135,6 +148,7 @@ while( (my $arr = $sth->fetchrow_arrayref()) ) {
print
FILE
join
("
\t
",
@array
)
.
"
\n
";
}
close
(
FILE
);
my
$dna_list
=
&get_inlist
(
0
,
@dna_ids
);
@clone_ids
=
&unique
(
@clone_ids
);
my
$clone_list
=
&get_inlist
(
0
,
@clone_ids
);
...
...
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