gnomon.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:8k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gnomon.cpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 20:56:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gnomon.cpp,v 1000.4 2004/06/01 20:56:23 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "gnomon.hpp"
  41. #include <corelib/ncbiapp.hpp>
  42. #include <algo/gnomon/gnomon.hpp>
  43. #include <gui/core/version.hpp>
  44. #include <gui/core/idocument.hpp>
  45. #include <gui/utils/system_path.hpp>
  46. #include <gui/utils/message_box.hpp>
  47. #include <gui/objutils/utils.hpp>
  48. #include <gui/plugin/PluginInfo.hpp>
  49. #include <gui/plugin/PluginCommandSet.hpp>
  50. #include <gui/plugin/PluginRequest.hpp>
  51. #include <gui/plugin/PluginCommand.hpp>
  52. #include <gui/plugin/PluginArg.hpp>
  53. #include <gui/plugin/PluginValueConstraint.hpp>
  54. #include <objmgr/util/sequence.hpp>
  55. #include <objmgr/util/feature.hpp>
  56. BEGIN_NCBI_SCOPE
  57. USING_SCOPE(ncbi::objects);
  58. static const string sc_human("Human (Homo sapiens)");
  59. static const string sc_worm ("Worm (Caenorhabditas elegans)");
  60. static const string sc_fly  ("Fly (Drosophila melanogaster)");
  61. void CPluginGnomon::GetInfo(CPluginInfo& info)
  62. {
  63.     info.Reset();
  64.     // version info macro
  65.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  66.                  string(__DATE__) + " " + string(__TIME__),
  67.                  "CPluginGnomon",
  68.                  "Search/Ab-Initio Predicion of Genes",
  69.                  "Search for genes using a pure ab-initio method",
  70.                  "");
  71.     // command info
  72.     CPluginCommand& cmd = info.SetCommands().AddAlgoCommand(eAlgoCommand_run);
  73.     cmd.AddArgument("loc", "Sequence to evaluate",
  74.                     CSeq_loc::GetTypeInfo());
  75.     cmd.SetConstraint("loc",
  76.                      (*CPluginValueConstraint::CreateSeqMol(),
  77.                       CSeq_inst::eMol_na,
  78.                       CSeq_inst::eMol_dna));
  79.     cmd.AddDefaultArgument("model", "Model Organism Data",
  80.                            CPluginArg::eString, sc_worm);
  81.     cmd.SetConstraint("model",
  82.         (*CPluginValueConstraint::CreateSet(),
  83.          sc_human, sc_worm, sc_fly));
  84. }
  85. void CPluginGnomon::RunCommand(CPluginMessage& msg)
  86. {
  87.     const CPluginCommand& cmd = msg.GetRequest().GetCommand();
  88.     CPluginReply& reply = msg.SetReply();
  89.     reply.SetStatus(eMessageStatus_failed);
  90.     const CSeq_loc& loc = dynamic_cast<const CSeq_loc&>(cmd["loc"].AsObject());
  91.     const IDocument* doc = cmd["loc"].GetDocument();
  92.     // retrieve the sequence to scan
  93.     CBioseq_Handle handle = doc->GetScope().GetBioseqHandle(loc);
  94.     CSeqVector vec =
  95.         handle.GetSequenceView(loc, CBioseq_Handle::eViewConstructed);
  96.     //
  97.     // retrieve the correct model file
  98.     //
  99.     string model_file;
  100.     {{
  101.         model_file = cmd["model"].AsString();
  102.         if (model_file == sc_human) {
  103.             model_file = "Human.inp";
  104.         } else if (model_file == sc_worm) {
  105.             model_file = "Worm.inp";
  106.         } else if (model_file == sc_fly) {
  107.             model_file = "Fly.inp";
  108.         }
  109.     }}
  110.     {{
  111.         CNcbiApplication* app = CNcbiApplication::Instance();
  112.         _ASSERT(app);
  113.         CNcbiRegistry& registry = app->GetConfig();
  114.         // By default the rebase "NAR format" file 
  115.         // is assumed to be <std>/etc/rebase.nar.
  116.         // This can be overridden in gbench.ini, via the application registry
  117.         // variable [PROSITE_SEARCH] PrositeData.
  118.         string model_path = registry.GetString("GNOMON", "ModelDataPath", "");
  119.         if ( !model_path.empty() ) {
  120.             model_path += model_file + ", ";
  121.         }
  122.         model_path += "<home>/etc/" + model_file +
  123.                       ", <std>/etc/" + model_file;
  124.         model_file = CSystemPath::ResolvePathExisting(model_path);
  125.     }}
  126.     if ( model_file.empty() ) {
  127.         NcbiMessageBox("Couldn't find model data.");
  128.         return;
  129.     }
  130.     CRef<CSeq_annot> annot;
  131.     //
  132.     // run GNOMON!
  133.     //
  134.     try {
  135.         CGnomon gnomon;
  136.         gnomon.SetSequence(vec);
  137.         gnomon.SetModelData(model_file);
  138.         gnomon.Run();
  139.         annot = gnomon.GetAnnot();
  140.     }
  141.     catch (CException& e) {
  142.         string msg("Gene scan failed:n");
  143.         msg += e.GetMsg();
  144.         NcbiMessageBox(msg);
  145.         return;
  146.     }
  147.     if ( !annot  ||  !annot->GetData().IsFtable()  ||
  148.         annot->GetData().GetFtable().size() == 0) {
  149.         NcbiMessageBox("No genes found in the selected region");
  150.         return;
  151.     }
  152.     //
  153.     // correct our locations
  154.     // this involves remapping the locations through our seq-loc
  155.     // and setting our IDs correctly
  156.     // while we're at it, fill in our dialog
  157.     //
  158.     if ( !m_Dialog.get() ) {
  159.         m_Dialog.reset(new CMultiColDlg());
  160.         m_Dialog->SetTitle("Ab-Initio Gene Scan");
  161.         m_Dialog->SetColumn(0, "Feature",  FL_ALIGN_LEFT, 0.5f);
  162.         m_Dialog->SetColumn(1, "Location", FL_ALIGN_LEFT, 0.5f);
  163.     }
  164.     string label("Ab-Initio prediction found ");
  165.     label += NStr::IntToString(annot->GetData().GetFtable().size() / 2);
  166.     label += " potential genes:";
  167.     m_Dialog->SetLabel(label);
  168.     m_Dialog->SetRows(0);
  169.     int row = 0;
  170.     const CSeq_id& id = sequence::GetId(loc);
  171.     NON_CONST_ITERATE (CSeq_annot::TData::TFtable, iter,
  172.                        annot->SetData().SetFtable()) {
  173.         CSeq_feat& feat = **iter;
  174.         feat.SetLocation().SetId(id);
  175.         feat.SetLocation
  176.             (*CSeqUtils::RemapChildToParent(loc, feat.GetLocation()));
  177.         feature::GetLabel(feat, &m_Dialog->SetCell(row, 0), feature::eBoth);
  178.         feat.GetLocation().GetLabel(&m_Dialog->SetCell(row, 1));
  179.         ++row;
  180.     }
  181.     const_cast<IDocument*>(doc)->AttachAnnot(*annot);
  182.     const_cast<IDocument*>(doc)->PostDocumentChanged();
  183.     m_Dialog->SetRows(row);
  184.     m_Dialog->Show();
  185.     reply.SetStatus(eMessageStatus_success);
  186. }
  187. END_NCBI_SCOPE
  188. /*
  189.  * ===========================================================================
  190.  * $Log: gnomon.cpp,v $
  191.  * Revision 1000.4  2004/06/01 20:56:23  gouriano
  192.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  193.  *
  194.  * Revision 1.8  2004/05/21 22:27:47  gorelenk
  195.  * Added PCH ncbi_pch.hpp
  196.  *
  197.  * Revision 1.7  2004/05/03 13:05:42  dicuccio
  198.  * gui/utils --> gui/objutils where needed
  199.  *
  200.  * Revision 1.6  2004/02/17 20:35:26  rsmith
  201.  * moved core/settings.[ch]pp and core/system_path.[ch]pp to config and utils, respectively.
  202.  *
  203.  * Revision 1.5  2003/12/22 19:27:06  dicuccio
  204.  * Changed to match API change in IDocument - UpdateAllViews() goes away
  205.  *
  206.  * Revision 1.4  2003/12/09 15:46:54  dicuccio
  207.  * Use CException::GetMsg() instead of what()
  208.  *
  209.  * Revision 1.3  2003/11/24 15:45:30  dicuccio
  210.  * Renamed CVersion to CPluginVersion
  211.  *
  212.  * Revision 1.2  2003/11/05 14:28:25  dicuccio
  213.  * Changed calling semantics to match new plugin API
  214.  *
  215.  * Revision 1.1  2003/10/24 16:56:50  dicuccio
  216.  * Initial revision
  217.  *
  218.  * ===========================================================================
  219.  */