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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: calculate_pI.cpp,v $
  4.  * PRODUCTION Revision 1000.5  2004/06/01 20:54:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: calculate_pI.cpp,v 1000.5 2004/06/01 20:54:48 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:  Josh Cherry
  35.  *
  36.  * File Description:  protein pI for gbench
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "calculate_pI.hpp"
  41. #include <algo/sequence/prot_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/PluginRequest.hpp>
  48. #include <gui/plugin/PluginValueConstraint.hpp>
  49. #include <objmgr/seq_vector.hpp>
  50. #include <objmgr/util/sequence.hpp>
  51. BEGIN_NCBI_SCOPE
  52. USING_SCOPE(objects);
  53. CAlgoPlugin_CalculatePI::~CAlgoPlugin_CalculatePI()
  54. {
  55. }
  56. // standard info boilerplate
  57. void CAlgoPlugin_CalculatePI::GetInfo(CPluginInfo& info)
  58. {
  59.     info.Reset();
  60.     // version info macro
  61.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  62.                  string(__DATE__) + " " + string(__TIME__),
  63.                  "CAlgoPlugin_CalculatePI", "Protein analysis/Protein Isoelectric Point",
  64.                  "Estimate pI (isoelectric point) of a protein",
  65.                  "");
  66.     // command info
  67.     CPluginCommandSet& cmds = info.SetCommands();
  68.     CPluginCommand&    args = cmds.AddAlgoCommand(eAlgoCommand_run);
  69.     args.AddArgument("locs", "Locations to evaluate",
  70.                      CSeq_loc::GetTypeInfo(),
  71.                      CPluginArg::TData::e_Array);
  72.     args.SetConstraint("locs",
  73.                        (*CPluginValueConstraint::CreateSeqMol(),
  74.                         CSeq_inst::eMol_aa));
  75. }
  76. void CAlgoPlugin_CalculatePI::RunCommand(CPluginMessage& msg)
  77. {
  78.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  79.     CPluginReply& reply = msg.SetReply();
  80.     _TRACE("CAlgoPlugin_CalculatePI::Run()");
  81.     if ( !m_Dialog.get() ) {
  82.         m_Dialog.reset(new CMultiColDlg());
  83.         m_Dialog->SetTitle("Protein Isoelectric Point");
  84.         m_Dialog->SetLabel("Protein isoelectric points (pI) are as follows:");
  85.         m_Dialog->SetColumn(0, "Sequence");
  86.         m_Dialog->SetColumn(1, "Location");
  87.         m_Dialog->SetColumn(2, "pI", FL_ALIGN_CENTER);
  88.     }
  89.     //
  90.     // first, evaluate whole sequences
  91.     //
  92.     int row = 0;
  93.     plugin_args::TLocList locs;
  94.     GetArgValue(args["locs"], locs);
  95.     ITERATE (plugin_args::TLocList, iter, locs) {
  96.         const CSeq_loc&  loc = *iter->second;
  97.         const IDocument& doc = *iter->first;
  98.         // find the best ID for this bioseq
  99.         try {
  100.             CBioseq_Handle handle = doc.GetScope().GetBioseqHandle(loc);
  101.             CSeqVector vec =
  102.                 handle.GetSequenceView(loc,
  103.                                        CBioseq_Handle::eViewConstructed,
  104.                                        CBioseq_Handle::eCoding_Iupac);
  105.             double pI  = CProtProp::GetProteinPI(vec);
  106.             string& id_str  = m_Dialog->SetCell(row, 0);
  107.             string& loc_str = m_Dialog->SetCell(row, 1);
  108.             string& pi_str  = m_Dialog->SetCell(row, 2);
  109.             const CSeq_id& best_id =
  110.                 sequence::GetId(handle, sequence::eGetId_Best);
  111.             best_id.GetLabel(&id_str);
  112.             loc_str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  113.             pi_str  = NStr::DoubleToString(pI);
  114.             ++row;
  115.         }
  116.         catch (CException& e) {
  117.             string str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  118.             LOG_POST(Error << "Error processing location " << str
  119.                      << ": " << e.what());
  120.         }
  121. #ifndef _DEBUG
  122.         catch (...) {
  123.             string str = CPluginUtils::GetLabel(loc, &doc.GetScope());
  124.             LOG_POST(Error << "Error processing location " << str);
  125.         }
  126. #endif
  127.     }
  128.     //
  129.     // prepare our dialog box
  130.     //
  131.     m_Dialog->Show();
  132.     reply.SetStatus(eMessageStatus_success);
  133. }
  134. END_NCBI_SCOPE
  135. /*
  136.  * ===========================================================================
  137.  * $Log: calculate_pI.cpp,v $
  138.  * Revision 1000.5  2004/06/01 20:54:48  gouriano
  139.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  140.  *
  141.  * Revision 1.20  2004/05/21 22:27:46  gorelenk
  142.  * Added PCH ncbi_pch.hpp
  143.  *
  144.  * Revision 1.19  2004/03/05 17:35:37  dicuccio
  145.  * Use sequence::GetId() instead of CSeq_id::GetStringDescr()
  146.  *
  147.  * Revision 1.18  2004/01/27 18:37:30  dicuccio
  148.  * Code clean-up.  Use standard names for plugins.  Removed unnecessary #includes
  149.  *
  150.  * Revision 1.17  2004/01/07 15:50:35  dicuccio
  151.  * Adjusted for API change in CPluginUtils::GetLabel().  Standardized exception
  152.  * reporting in algorithms.
  153.  *
  154.  * Revision 1.16  2003/11/24 15:45:24  dicuccio
  155.  * Renamed CVersion to CPluginVersion
  156.  *
  157.  * Revision 1.15  2003/11/06 20:12:12  dicuccio
  158.  * Cleaned up handling of USING_SCOPE - removed from all headers
  159.  *
  160.  * Revision 1.14  2003/11/04 17:49:22  dicuccio
  161.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  162.  * CPluginCommand/CPluginReply
  163.  *
  164.  * Revision 1.13  2003/10/07 13:47:00  dicuccio
  165.  * Renamed CPluginURL* to CPluginValue*
  166.  *
  167.  * Revision 1.12  2003/09/04 14:05:24  dicuccio
  168.  * Use IDocument instead of CDocument
  169.  *
  170.  * Revision 1.11  2003/09/03 14:46:53  rsmith
  171.  * change namespace name from args to plugin_args to avoid clashes with variable names.
  172.  *
  173.  * Revision 1.10  2003/08/21 12:03:07  dicuccio
  174.  * Make use of new typedef in plugin_utils.hpp for argument values.
  175.  *
  176.  * Revision 1.9  2003/08/05 17:03:55  dicuccio
  177.  * Made multi-column output dialog a member variable - allows non-modal operation
  178.  *
  179.  * Revision 1.8  2003/07/28 11:51:48  dicuccio
  180.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  181.  * multicolumn list dialog.  Deprecated use of COutputm_Dialog->
  182.  *
  183.  * Revision 1.7  2003/07/24 13:15:27  dicuccio
  184.  * Fixed reference to argument - arg is named "locs" not "seqs"
  185.  *
  186.  * Revision 1.6  2003/07/22 15:32:16  dicuccio
  187.  * Changed to make use of new API in plugin_utils.hpp - GetArgValue()
  188.  *
  189.  * Revision 1.5  2003/07/21 19:32:53  dicuccio
  190.  * Added constraints based on molecule type
  191.  *
  192.  * Revision 1.4  2003/07/14 11:12:05  shomrat
  193.  * Plugin messageing system related changes
  194.  *
  195.  * Revision 1.3  2003/07/01 15:08:41  jcherry
  196.  * Moved a bunch of stuff into CNucProp and CProtProp
  197.  * Put these in c++/{src,include}/algo/sequence
  198.  *
  199.  * Revision 1.2  2003/06/26 15:33:40  dicuccio
  200.  * Moved GetURLValue() from PluginURL.hpp to plugin_utils.hpp.  Fixed compilation
  201.  * errors relating to missing #includes
  202.  *
  203.  * Revision 1.1  2003/06/25 20:15:29  jcherry
  204.  * Initial version
  205.  *
  206.  * ===========================================================================
  207.  */