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

生物技术

开发平台:

C/C++

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