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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gc_content.cpp,v $
  4.  * PRODUCTION Revision 1000.5  2004/06/01 20:55:02  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.35
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gc_content.cpp,v 1000.5 2004/06/01 20:55:02 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.  *    CAlgoPlugin_GcContent -- implements the algorithm to calculate GC composition
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "gc_content.hpp"
  41. #include <algo/sequence/nuc_prop.hpp>
  42. #include <gui/core/plugin_utils.hpp>
  43. #include <gui/core/version.hpp>
  44. #include <gui/dialogs/col/multi_col_dlg.hpp>
  45. #include <gui/plugin/PluginCommandSet.hpp>
  46. #include <gui/plugin/PluginInfo.hpp>
  47. #include <gui/plugin/PluginReply.hpp>
  48. #include <gui/plugin/PluginRequest.hpp>
  49. #include <gui/plugin/PluginValueConstraint.hpp>
  50. #include <objmgr/seq_vector.hpp>
  51. #include <objmgr/util/sequence.hpp>
  52. BEGIN_NCBI_SCOPE
  53. USING_SCOPE(objects);
  54. CAlgoPlugin_GcContent::~CAlgoPlugin_GcContent()
  55. {
  56. }
  57. // standard info boilerplate
  58. void CAlgoPlugin_GcContent::GetInfo(CPluginInfo& info)
  59. {
  60.     info.Reset();
  61.     // version info macro
  62.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  63.                  string(__DATE__) + " " + string(__TIME__),
  64.                  "CAlgoPlugin_GcContent", "Composition/GC Content",
  65.                  "Determine the G+C+S content of the current selections",
  66.                  "");
  67.     // command info
  68.     CPluginCommandSet& cmds = info.SetCommands();
  69.     CPluginCommand&    args = cmds.AddAlgoCommand(eAlgoCommand_run);
  70.     args.AddArgument("locs", "Locations to evaluate",
  71.                      CSeq_loc::GetTypeInfo(),
  72.                      CPluginArg::TData::e_Array);
  73.     args.SetConstraint("locs",
  74.                        (*CPluginValueConstraint::CreateSeqMol(),
  75.                         CSeq_inst::eMol_na,
  76.                         CSeq_inst::eMol_dna,
  77.                         CSeq_inst::eMol_rna));
  78. }
  79. void CAlgoPlugin_GcContent::RunCommand(CPluginMessage& msg)
  80. {
  81.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  82.     CPluginReply& reply = msg.SetReply();
  83.     _TRACE("CGcContet::Run()");
  84.     if ( !m_Dialog.get() ) {
  85.         m_Dialog.reset(new CMultiColDlg());
  86.         m_Dialog->SetTitle("GC Content");
  87.         m_Dialog->SetLabel("GC Content for the following locations:");
  88.         m_Dialog->SetColumn(0, "Sequence", FL_ALIGN_LEFT, 0.25f);
  89.         m_Dialog->SetColumn(1, "Location", FL_ALIGN_LEFT, 0.50f);
  90.         m_Dialog->SetColumn(2, "%GC",      FL_ALIGN_CENTER, 0.25f);
  91.     }
  92.     //
  93.     // first, evaluate whole sequences
  94.     //
  95.     int row = 0;
  96.     plugin_args::TLocList locs;
  97.     GetArgValue(args["locs"], locs);
  98.     ITERATE (plugin_args::TLocList, iter, locs) {
  99.         const CSeq_loc&  loc = *iter->second;
  100.         const IDocument& doc = *iter->first;
  101.         try {
  102.             CBioseq_Handle handle = doc.GetScope().GetBioseqHandle(loc);
  103.             CSeqVector vec =
  104.                 handle.GetSequenceView(loc,
  105.                                        CBioseq_Handle::eViewConstructed,
  106.                                        CBioseq_Handle::eCoding_Iupac);
  107.             int pct_gc = CNucProp::GetPercentGC(vec);
  108.             string& id_str  = m_Dialog->SetCell(row, 0);
  109.             string& loc_str = m_Dialog->SetCell(row, 1);
  110.             string& gc_str  = m_Dialog->SetCell(row, 2);
  111.             const CSeq_id& best_id =
  112.                 sequence::GetId(handle, sequence::eGetId_Best);
  113.             id_str.erase();
  114.             best_id.GetLabel(&id_str);
  115.             loc_str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  116.             gc_str = NStr::IntToString(pct_gc);
  117.             ++row;
  118.         }
  119.         catch (CException& e) {
  120.             string str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  121.             LOG_POST(Error << "Error processing location " << str
  122.                      << ": " << e.what());
  123.         }
  124. #ifndef _DEBUG
  125.         catch (...) {
  126.             string str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  127.             LOG_POST(Error << "Error processing location " << str);
  128.         }
  129. #endif
  130.     }
  131.     //
  132.     // prepare our dialog box
  133.     //
  134.     m_Dialog->SetRows(row);
  135.     m_Dialog->Show();
  136.     reply.SetStatus(eMessageStatus_success);
  137. }
  138. END_NCBI_SCOPE
  139. /*
  140.  * ===========================================================================
  141.  * $Log: gc_content.cpp,v $
  142.  * Revision 1000.5  2004/06/01 20:55:02  gouriano
  143.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.35
  144.  *
  145.  * Revision 1.35  2004/05/21 22:27:46  gorelenk
  146.  * Added PCH ncbi_pch.hpp
  147.  *
  148.  * Revision 1.34  2004/03/05 17:35:37  dicuccio
  149.  * Use sequence::GetId() instead of CSeq_id::GetStringDescr()
  150.  *
  151.  * Revision 1.33  2004/01/27 18:37:45  dicuccio
  152.  * Code clean-up.  Use standard names for plugins.  Removed unnecessary #includes
  153.  *
  154.  * Revision 1.32  2004/01/07 15:50:36  dicuccio
  155.  * Adjusted for API change in CPluginUtils::GetLabel().  Standardized exception
  156.  * reporting in algorithms.
  157.  *
  158.  * Revision 1.31  2003/11/24 15:45:26  dicuccio
  159.  * Renamed CVersion to CPluginVersion
  160.  *
  161.  * Revision 1.30  2003/11/06 20:12:12  dicuccio
  162.  * Cleaned up handling of USING_SCOPE - removed from all headers
  163.  *
  164.  * Revision 1.29  2003/11/04 17:49:23  dicuccio
  165.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  166.  * CPluginCommand/CPluginReply
  167.  *
  168.  * Revision 1.28  2003/10/07 13:47:00  dicuccio
  169.  * Renamed CPluginURL* to CPluginValue*
  170.  *
  171.  * Revision 1.27  2003/09/04 14:05:24  dicuccio
  172.  * Use IDocument instead of CDocument
  173.  *
  174.  * Revision 1.26  2003/09/03 14:46:53  rsmith
  175.  * change namespace name from args to plugin_args to avoid clashes with variable names.
  176.  *
  177.  * Revision 1.25  2003/08/21 12:03:07  dicuccio
  178.  * Make use of new typedef in plugin_utils.hpp for argument values.
  179.  *
  180.  * Revision 1.24  2003/08/05 17:03:55  dicuccio
  181.  * Made multi-column output dialog a member variable - allows non-modal operation
  182.  *
  183.  * Revision 1.23  2003/07/28 11:51:48  dicuccio
  184.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  185.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  186.  *
  187.  * Revision 1.22  2003/07/22 15:32:16  dicuccio
  188.  * Changed to make use of new API in plugin_utils.hpp - GetArgValue()
  189.  *
  190.  * Revision 1.21  2003/07/21 19:32:53  dicuccio
  191.  * Added constraints based on molecule type
  192.  *
  193.  * Revision 1.20  2003/07/14 11:12:43  shomrat
  194.  * Plugin messageing system related changes
  195.  *
  196.  * Revision 1.19  2003/07/01 15:08:41  jcherry
  197.  * Moved a bunch of stuff into CNucProp and CProtProp
  198.  * Put these in c++/{src,include}/algo/sequence
  199.  *
  200.  * Revision 1.18  2003/06/26 15:33:40  dicuccio
  201.  * Moved GetURLValue() from PluginURL.hpp to plugin_utils.hpp.  Fixed compilation
  202.  * errors relating to missing #includes
  203.  *
  204.  * Revision 1.17  2003/06/25 17:02:57  dicuccio
  205.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  206.  * implementation file.  Lots of #include file clean-ups.
  207.  *
  208.  * Revision 1.16  2003/06/20 14:52:36  dicuccio
  209.  * Revised plugin registration - moved GetInfo() into the plugin handler
  210.  *
  211.  * Revision 1.15  2003/06/02 16:06:21  dicuccio
  212.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  213.  *     - src/objects/asn2asn --> arc/app/asn2asn
  214.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  215.  *     - src/objects/objmgr --> src/objmgr
  216.  *     - src/objects/util --> src/objmgr/util
  217.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  218.  *     - src/objects/flat --> src/objtools/flat
  219.  *     - src/objects/validator --> src/objtools/validator
  220.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  221.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  222.  * replaces the three libmmdb? libs.
  223.  *
  224.  * Revision 1.14  2003/05/19 13:39:07  dicuccio
  225.  * Moved gui/core/plugin/ --> gui/plugin/.  Merged core libraries into libgui_core
  226.  *
  227.  * Revision 1.13  2003/04/24 16:38:00  dicuccio
  228.  * Updated to reflect changes in plugin API
  229.  *
  230.  * Revision 1.12  2003/03/25 13:47:42  dicuccio
  231.  * Reimplemented to take one required argument instead of three optional ones -
  232.  * makes standard processing easier
  233.  *
  234.  * Revision 1.11  2003/03/11 15:23:29  kuznets
  235.  * iterate -> ITERATE
  236.  *
  237.  * Revision 1.10  2003/02/25 14:45:16  dicuccio
  238.  * Changed accessors to match changes in plugin arguments accessors
  239.  *
  240.  * Revision 1.9  2003/02/24 13:03:15  dicuccio
  241.  * Renamed classes in plugin spec:
  242.  *     CArgSeg --> CPluginArgSet
  243.  *     CArgument --> CPluginArg
  244.  *     CPluginArgs --> CPluginCommand
  245.  *     CPluginCommands --> CPluginCommandSet
  246.  *
  247.  * Revision 1.8  2003/02/20 19:49:53  dicuccio
  248.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  249.  * over to use new plugin architecture.
  250.  *
  251.  * Revision 1.7  2003/02/05 19:47:23  dicuccio
  252.  * Fixed memory leak with output dialog.  Changed ambiguous 'R' to 'S' for G+C
  253.  *
  254.  * Revision 1.6  2003/01/13 13:10:05  dicuccio
  255.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  256.  * Moved all FLUID-generated code into namespace ncbi.
  257.  *
  258.  * Revision 1.5  2003/01/09 14:49:21  dicuccio
  259.  * Use 'const CBioseq_Handle&' instead of 'CBioseq_Handle&'
  260.  *
  261.  * Revision 1.4  2002/12/30 18:14:18  dicuccio
  262.  * Minor syntactic fixes.  Reformatted some long lines.
  263.  *
  264.  * Revision 1.3  2002/12/30 17:21:40  ostell
  265.  * Added support for most document type selections. Changed labels to use Labelxxx functions.
  266.  *
  267.  * Revision 1.2  2002/11/07 18:34:52  dicuccio
  268.  * Changed to use string::empty()instead of compare to empty string.
  269.  *
  270.  * Revision 1.1  2002/11/05 20:59:20  dicuccio
  271.  * Initial revision
  272.  *
  273.  * ===========================================================================
  274.  */