136 |
# We only need it if load-only is NOT specified. |
# We only need it if load-only is NOT specified. |
137 |
if (! $options->{loadOnly}) { |
if (! $options->{loadOnly}) { |
138 |
if (! defined $subsysFile || $subsysFile eq '') { |
if (! defined $subsysFile || $subsysFile eq '') { |
139 |
# Here we want all the NMPDR subsystems. First we get the whole list. |
# Here we want all the usable subsystems. First we get the whole list. |
140 |
my @subs = $fig->all_subsystems(); |
my @subs = $fig->all_subsystems(); |
141 |
# Loop through, checking for the NMPDR file. |
# Loop through, checking for usability. |
142 |
for my $sub (@subs) { |
for my $sub (@subs) { |
143 |
if (-e "$FIG_Config::data/Subsystems/$sub/NMPDR") { |
if ($fig->usable_subsystem($sub)) { |
144 |
$subsystems{$sub} = 1; |
$subsystems{$sub} = 1; |
145 |
} |
} |
146 |
} |
} |
340 |
my $fig = $self->{fig}; |
my $fig = $self->{fig}; |
341 |
# Get the genome hash. |
# Get the genome hash. |
342 |
my $genomeFilter = $self->{genomes}; |
my $genomeFilter = $self->{genomes}; |
343 |
my $genomeCount = (keys %{$genomeFilter}); |
# Set up an ID counter for the PCHs. |
344 |
my $featureCount = $genomeCount * 4000; |
my $pchID = 0; |
345 |
# Start the loads. |
# Start the loads. |
346 |
my $loadCoupling = $self->_TableLoader('Coupling'); |
my $loadCoupling = $self->_TableLoader('Coupling'); |
347 |
my $loadIsEvidencedBy = $self->_TableLoader('IsEvidencedBy', $self->PrimaryOnly); |
my $loadIsEvidencedBy = $self->_TableLoader('IsEvidencedBy', $self->PrimaryOnly); |
375 |
for my $coupleData (@couplings) { |
for my $coupleData (@couplings) { |
376 |
my ($peg2, $score) = @{$coupleData}; |
my ($peg2, $score) = @{$coupleData}; |
377 |
# Compute the coupling ID. |
# Compute the coupling ID. |
378 |
my $coupleID = Sprout::CouplingID($peg1, $peg2); |
my $coupleID = $self->{erdb}->CouplingID($peg1, $peg2); |
379 |
if (! exists $dupHash{$coupleID}) { |
if (! exists $dupHash{$coupleID}) { |
380 |
$loadCoupling->Add("couplingIn"); |
$loadCoupling->Add("couplingIn"); |
381 |
# Here we have a new coupling to store in the load files. |
# Here we have a new coupling to store in the load files. |
411 |
} |
} |
412 |
} |
} |
413 |
for my $evidenceID (keys %evidenceMap) { |
for my $evidenceID (keys %evidenceMap) { |
414 |
|
# Get the ID for this evidence. |
415 |
|
$pchID++; |
416 |
# Create the evidence record. |
# Create the evidence record. |
417 |
my ($peg3, $peg4, $usage) = @{$evidenceMap{$evidenceID}}; |
my ($peg3, $peg4, $usage) = @{$evidenceMap{$evidenceID}}; |
418 |
$loadPCH->Put($evidenceID, $usage); |
$loadPCH->Put($pchID, $usage); |
419 |
# Connect it to the coupling. |
# Connect it to the coupling. |
420 |
$loadIsEvidencedBy->Put($coupleID, $evidenceID); |
$loadIsEvidencedBy->Put($coupleID, $pchID); |
421 |
# Connect it to the features. |
# Connect it to the features. |
422 |
$loadUsesAsEvidence->Put($evidenceID, $peg3, 1); |
$loadUsesAsEvidence->Put($pchID, $peg3, 1); |
423 |
$loadUsesAsEvidence->Put($evidenceID, $peg4, 2); |
$loadUsesAsEvidence->Put($pchID, $peg4, 2); |
424 |
} |
} |
425 |
} |
} |
426 |
} |
} |
488 |
$loadFeature->Add("genomeIn"); |
$loadFeature->Add("genomeIn"); |
489 |
# Get the feature list for this genome. |
# Get the feature list for this genome. |
490 |
my $features = $fig->all_features_detailed($genomeID); |
my $features = $fig->all_features_detailed($genomeID); |
491 |
|
# Sort and count the list. |
492 |
|
my @featureData = sort { $a->[0] cmp $b->[0] } @{$features}; |
493 |
|
my $count = scalar @featureData; |
494 |
|
Trace("$count features found for genome $genomeID.") if T(3); |
495 |
|
# Set up for our duplicate-feature check. |
496 |
|
my $oldFeatureID = ""; |
497 |
# Loop through the features. |
# Loop through the features. |
498 |
for my $featureData (@{$features}) { |
for my $featureData (@{$features}) { |
|
$loadFeature->Add("featureIn"); |
|
499 |
# Split the tuple. |
# Split the tuple. |
500 |
my ($featureID, $locations, undef, $type) = @{$featureData}; |
my ($featureID, $locations, undef, $type) = @{$featureData}; |
501 |
|
# Check for duplicates. |
502 |
|
if ($featureID eq $oldFeatureID) { |
503 |
|
Trace("Duplicate feature $featureID found.") if T(1); |
504 |
|
} else { |
505 |
|
$oldFeatureID = $featureID; |
506 |
|
# Count this feature. |
507 |
|
$loadFeature->Add("featureIn"); |
508 |
# Create the feature record. |
# Create the feature record. |
509 |
$loadFeature->Put($featureID, 1, $type); |
$loadFeature->Put($featureID, 1, $type); |
510 |
# Link it to the parent genome. |
# Link it to the parent genome. |
560 |
} |
} |
561 |
} |
} |
562 |
} |
} |
563 |
|
} |
564 |
# Finish the loads. |
# Finish the loads. |
565 |
my $retVal = $self->_FinishAll(); |
my $retVal = $self->_FinishAll(); |
566 |
return $retVal; |
return $retVal; |
649 |
The following relations are loaded by this method. |
The following relations are loaded by this method. |
650 |
|
|
651 |
Subsystem |
Subsystem |
652 |
|
SubsystemClass |
653 |
Role |
Role |
654 |
RoleEC |
RoleEC |
655 |
SSCell |
SSCell |
712 |
my $loadConsistsOfGenomes = $self->_TableLoader('ConsistsOfGenomes', $self->PrimaryOnly); |
my $loadConsistsOfGenomes = $self->_TableLoader('ConsistsOfGenomes', $self->PrimaryOnly); |
713 |
my $loadHasRoleSubset = $self->_TableLoader('HasRoleSubset', $self->PrimaryOnly); |
my $loadHasRoleSubset = $self->_TableLoader('HasRoleSubset', $self->PrimaryOnly); |
714 |
my $loadHasGenomeSubset = $self->_TableLoader('HasGenomeSubset', $self->PrimaryOnly); |
my $loadHasGenomeSubset = $self->_TableLoader('HasGenomeSubset', $self->PrimaryOnly); |
715 |
|
my $loadSubsystemClass = $self->_TableLoader('SubsystemClass', $self->PrimaryOnly); |
716 |
if ($self->{options}->{loadOnly}) { |
if ($self->{options}->{loadOnly}) { |
717 |
Trace("Loading from existing files.") if T(2); |
Trace("Loading from existing files.") if T(2); |
718 |
} else { |
} else { |
738 |
my $curator = $sub->get_curator(); |
my $curator = $sub->get_curator(); |
739 |
my $notes = $sub->get_notes(); |
my $notes = $sub->get_notes(); |
740 |
$loadSubsystem->Put($subsysID, $curator, $notes); |
$loadSubsystem->Put($subsysID, $curator, $notes); |
741 |
|
my $class = $fig->subsystem_classification($subsysID); |
742 |
|
if ($class) { |
743 |
|
$loadSubsystemClass->Put($subsysID, $class); |
744 |
|
} |
745 |
# Connect it to its roles. Each role is a column in the subsystem spreadsheet. |
# Connect it to its roles. Each role is a column in the subsystem spreadsheet. |
746 |
for (my $col = 0; defined($roleID = $sub->get_role($col)); $col++) { |
for (my $col = 0; defined($roleID = $sub->get_role($col)); $col++) { |
747 |
# Connect to this role. |
# Connect to this role. |
806 |
if ($pegCount > 0) { |
if ($pegCount > 0) { |
807 |
Trace("$pegCount PEGs in $cellCount cells for $genomeID.") if T(3); |
Trace("$pegCount PEGs in $cellCount cells for $genomeID.") if T(3); |
808 |
$loadParticipatesIn->Put($genomeID, $subsysID, $variantCode); |
$loadParticipatesIn->Put($genomeID, $subsysID, $variantCode); |
|
# Partition the PEGs found into clusters. |
|
|
my @clusters = $fig->compute_clusters(\@pegsFound, $sub); |
|
809 |
# Create a hash mapping PEG IDs to cluster numbers. |
# Create a hash mapping PEG IDs to cluster numbers. |
810 |
# We default to -1 for all of them. |
# We default to -1 for all of them. |
811 |
my %clusterOf = map { $_ => -1 } @pegsFound; |
my %clusterOf = map { $_ => -1 } @pegsFound; |
812 |
|
# Partition the PEGs found into clusters. |
813 |
|
my @clusters = $fig->compute_clusters([keys %clusterOf], $sub); |
814 |
for (my $i = 0; $i <= $#clusters; $i++) { |
for (my $i = 0; $i <= $#clusters; $i++) { |
815 |
my $subList = $clusters[$i]; |
my $subList = $clusters[$i]; |
816 |
for my $peg (@{$subList}) { |
for my $peg (@{$subList}) { |
1063 |
# Get the annotation tuple. |
# Get the annotation tuple. |
1064 |
my ($peg, $timestamp, $user, $text) = @{$tuple}; |
my ($peg, $timestamp, $user, $text) = @{$tuple}; |
1065 |
# Here we fix up the annotation text. "\r" is removed, |
# Here we fix up the annotation text. "\r" is removed, |
1066 |
# and "\t" and "\n" are escaped. Note we use the "s" |
# and "\t" and "\n" are escaped. Note we use the "gs" |
1067 |
# modifier so that new-lines inside the text do not |
# modifier so that new-lines inside the text do not |
1068 |
# stop the substitution search. |
# stop the substitution search. |
1069 |
$text =~ s/\r//gs; |
$text =~ s/\r//gs; |
1417 |
return $retVal; |
return $retVal; |
1418 |
} |
} |
1419 |
|
|
1420 |
|
=head3 LoadSynonymData |
1421 |
|
|
1422 |
|
C<< my $stats = $spl->LoadSynonymData(); >> |
1423 |
|
|
1424 |
|
Load the synonym groups into Sprout. |
1425 |
|
|
1426 |
|
The following relations are loaded by this method. |
1427 |
|
|
1428 |
|
SynonymGroup |
1429 |
|
IsSynonymGroupFor |
1430 |
|
|
1431 |
|
The source information for these relations is taken from the C<maps_to_id> method |
1432 |
|
of the B<FIG> object. Unfortunately, to make this work, we need to use direct |
1433 |
|
SQL against the FIG database. |
1434 |
|
|
1435 |
|
=over 4 |
1436 |
|
|
1437 |
|
=item RETURNS |
1438 |
|
|
1439 |
|
Returns a statistics object for the loads. |
1440 |
|
|
1441 |
|
=back |
1442 |
|
|
1443 |
|
=cut |
1444 |
|
#: Return Type $%; |
1445 |
|
sub LoadSynonymData { |
1446 |
|
# Get this object instance. |
1447 |
|
my ($self) = @_; |
1448 |
|
# Get the FIG object. |
1449 |
|
my $fig = $self->{fig}; |
1450 |
|
# Get the genome hash. |
1451 |
|
my $genomeHash = $self->{genomes}; |
1452 |
|
# Create a load object for the table we're loading. |
1453 |
|
my $loadSynonymGroup = $self->_TableLoader('SynonymGroup'); |
1454 |
|
my $loadIsSynonymGroupFor = $self->_TableLoader('IsSynonymGroupFor'); |
1455 |
|
if ($self->{options}->{loadOnly}) { |
1456 |
|
Trace("Loading from existing files.") if T(2); |
1457 |
|
} else { |
1458 |
|
Trace("Generating synonym group data.") if T(2); |
1459 |
|
# Get the database handle. |
1460 |
|
my $dbh = $fig->db_handle(); |
1461 |
|
# Ask for the synonyms. |
1462 |
|
my $sth = $dbh->prepare_command("SELECT syn_id, maps_to FROM peg_synonyms ORDER BY syn_id"); |
1463 |
|
my $result = $sth->execute(); |
1464 |
|
if (! defined($result)) { |
1465 |
|
Confess("Database error in Synonym load: " . $sth->errstr()); |
1466 |
|
} else { |
1467 |
|
# Remember the current synonym. |
1468 |
|
my $current_syn = ""; |
1469 |
|
# Count the features. |
1470 |
|
my $featureCount = 0; |
1471 |
|
# Loop through the synonym/peg pairs. |
1472 |
|
while (my @row = $sth->fetchrow()) { |
1473 |
|
# Get the synonym ID and feature ID. |
1474 |
|
my ($syn_id, $peg) = @row; |
1475 |
|
# Insure it's for one of our genomes. |
1476 |
|
my $genomeID = FIG::genome_of($peg); |
1477 |
|
if (exists $genomeHash->{$genomeID}) { |
1478 |
|
# Verify the synonym. |
1479 |
|
if ($syn_id ne $current_syn) { |
1480 |
|
# It's new, so put it in the group table. |
1481 |
|
$loadSynonymGroup->Put($syn_id); |
1482 |
|
$current_syn = $syn_id; |
1483 |
|
} |
1484 |
|
# Connect the synonym to the peg. |
1485 |
|
$loadIsSynonymGroupFor->Put($syn_id, $peg); |
1486 |
|
# Count this feature. |
1487 |
|
$featureCount++; |
1488 |
|
if ($featureCount % 1000 == 0) { |
1489 |
|
Trace("$featureCount features processed.") if T(3); |
1490 |
|
} |
1491 |
|
} |
1492 |
|
} |
1493 |
|
} |
1494 |
|
} |
1495 |
|
# Finish the load. |
1496 |
|
my $retVal = $self->_FinishAll(); |
1497 |
|
return $retVal; |
1498 |
|
} |
1499 |
|
|
1500 |
|
|
1501 |
=head2 Internal Utility Methods |
=head2 Internal Utility Methods |
1502 |
|
|
1503 |
=head3 TableLoader |
=head3 TableLoader |
1565 |
my $retVal = Stats->new(); |
my $retVal = Stats->new(); |
1566 |
# Get the loader list. |
# Get the loader list. |
1567 |
my $loadList = $self->{loaders}; |
my $loadList = $self->{loaders}; |
1568 |
|
# Create a hash to hold the statistics objects, keyed on relation name. |
1569 |
|
my %loaderHash = (); |
1570 |
# Loop through the list, finishing the loads. Note that if the finish fails, we die |
# Loop through the list, finishing the loads. Note that if the finish fails, we die |
1571 |
# ignominiously. At some future point, we want to make the loads restartable. |
# ignominiously. At some future point, we want to make the loads more restartable. |
1572 |
while (my $loader = pop @{$loadList}) { |
while (my $loader = pop @{$loadList}) { |
1573 |
# Get the relation name. |
# Get the relation name. |
1574 |
my $relName = $loader->RelName; |
my $relName = $loader->RelName; |
1579 |
# Here we really need to finish. |
# Here we really need to finish. |
1580 |
Trace("Finishing $relName.") if T(2); |
Trace("Finishing $relName.") if T(2); |
1581 |
my $stats = $loader->Finish(); |
my $stats = $loader->Finish(); |
1582 |
|
$loaderHash{$relName} = $stats; |
1583 |
|
} |
1584 |
|
} |
1585 |
|
# Now we loop through again, actually loading the tables. We want to finish before |
1586 |
|
# loading so that if something goes wrong at this point, all the load files are usable |
1587 |
|
# and we don't have to redo all that work. |
1588 |
|
for my $relName (sort keys %loaderHash) { |
1589 |
|
# Get the statistics for this relation. |
1590 |
|
my $stats = $loaderHash{$relName}; |
1591 |
|
# Check for a database load. |
1592 |
if ($self->{options}->{dbLoad}) { |
if ($self->{options}->{dbLoad}) { |
1593 |
# Here we want to use the load file just created to load the database. |
# Here we want to use the load file just created to load the database. |
1594 |
Trace("Loading relation $relName.") if T(2); |
Trace("Loading relation $relName.") if T(2); |
1599 |
$retVal->Accumulate($stats); |
$retVal->Accumulate($stats); |
1600 |
Trace("Statistics for $relName:\n" . $stats->Show()) if T(2); |
Trace("Statistics for $relName:\n" . $stats->Show()) if T(2); |
1601 |
} |
} |
|
} |
|
1602 |
# Return the load statistics. |
# Return the load statistics. |
1603 |
return $retVal; |
return $retVal; |
1604 |
} |
} |