=head1 LICENSE

Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
Copyright [2016-2019] EMBL-European Bioinformatics Institute

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

=cut


=head1 CONTACT

  Please email comments or questions to the public Ensembl
  developers list at <http://lists.ensembl.org/mailman/listinfo/dev>.

  Questions may also be sent to the Ensembl help desk at
  <http://www.ensembl.org/Help/Contact>.

=cut

=head1 NAME

Bio::EnsEMBL::Compara::RunnableDB::ObjectStore::GeneTreeCAFE

=head1 DESCRIPTION

This eHive Runnable prepares a data-structure holding the exon boundaries
for a given GeneTree.
The data are used by the web-site

Required parameters:
 - gene_tree_id: the root_id of the GeneTree

Branch events:
 - #1: autoflow on success (eHive default)

=head1 APPENDIX

The rest of the documentation details each of the object methods.
Internal methods are usually preceded with an underscore (_)

=cut

package Bio::EnsEMBL::Compara::RunnableDB::ObjectStore::GeneTreeCAFE;

use strict;
use warnings;

use JSON;
use Bio::EnsEMBL::Compara::Utils::CAFETreeHash;

use base ('Bio::EnsEMBL::Compara::RunnableDB::BaseRunnable');


## Fetch the CAFE tree from the database
sub fetch_input {
    my $self = shift @_;

    $self->dbc and $self->dbc->disconnect_if_idle();

    my $gene_tree_id    = $self->param_required('gene_tree_id');
    my $tree_adaptor    = $self->compara_dba->get_GeneTreeAdaptor;
    my $gene_tree       = $tree_adaptor->fetch_by_dbID( $gene_tree_id ) or die "Could not fetch gene_tree with gene_tree_id='$gene_tree_id'";
    my $cafe_adaptor    = $self->compara_dba->get_CAFEGeneFamilyAdaptor;
    my $cafe_tree       = $cafe_adaptor->fetch_by_GeneTree($gene_tree);
    my $copy            = $cafe_adaptor->fetch_by_GeneTree($gene_tree);

    unless ($cafe_tree) {
        $self->complete_early("No CAFE tree for the gene_tree dbID=$gene_tree_id");
    }

    # To pre-load all the tree nodes and all the taxon information
    my $taxa = Bio::EnsEMBL::Compara::Utils::Preloader::load_all_NCBITaxon($self->compara_dba->get_NCBITaxonAdaptor, $cafe_tree->root->get_all_nodes, $copy->root->get_all_nodes);
    $self->compara_dba->get_NCBITaxonAdaptor->_load_tagvalues_multiple( $taxa );

    $self->param('cafe_tree', $cafe_tree);
    $self->param('cafe_tree_copy', $copy);
}

## Compute the LCA-pruned tree and convert both to JSON
sub run {
    my $self = shift @_;

    $self->dbc and $self->dbc->disconnect_if_idle();

    my $cafe_tree = $self->param('cafe_tree');
    $cafe_tree->multifurcate_tree();
    my $cafe_hash = Bio::EnsEMBL::Compara::Utils::CAFETreeHash->convert($cafe_tree);

    $cafe_tree = $self->param('cafe_tree_copy');
    $cafe_tree->root($cafe_tree->root->lca_reroot($cafe_tree->lca_id));
    $cafe_tree->multifurcate_tree();

    my $lca_cafe_hash = Bio::EnsEMBL::Compara::Utils::CAFETreeHash->convert($cafe_tree);

    # Serialize in JSON
    my $jf = JSON->new()->pretty(0);
    my $cafe_json = $jf->encode($cafe_hash);
    my $lca_cafe_json = $jf->encode($lca_cafe_hash);

    $self->param('cafe_json', $cafe_json);
    $self->param('lca_cafe_json', $lca_cafe_json);
}

## Store the data in the database
sub write_output {
    my $self = shift @_;

    $self->dbc and $self->dbc->disconnect_if_idle();

    $self->compara_dba->get_GeneTreeObjectStoreAdaptor->store($self->param('gene_tree_id'), 'cafe', $self->param('cafe_json'))
        || die "Nothing was stored in the database for gene_tree_id=".$self->param('gene_tree_id');
    $self->compara_dba->get_GeneTreeObjectStoreAdaptor->store($self->param('gene_tree_id'), 'cafe_lca', $self->param('lca_cafe_json'))
        || die "Nothing was stored in the database for gene_tree_id=".$self->param('gene_tree_id');
}

1;
