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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: validerror_descr.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:00  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: validerror_descr.cpp,v 1000.1 2004/06/01 19:48:00 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.  * Author:  Jonathan Kans, Clifford Clausen, Aaron Ucko......
  35.  *
  36.  * File Description:
  37.  *   validation of seq_descr
  38.  *   .......
  39.  *
  40.  */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include "validatorp.hpp"
  44. #include <serial/iterator.hpp>
  45. #include <objects/seq/Seqdesc.hpp>
  46. #include <objects/seq/Seq_descr.hpp>
  47. BEGIN_NCBI_SCOPE
  48. BEGIN_SCOPE(objects)
  49. BEGIN_SCOPE(validator)
  50. CValidError_descr::CValidError_descr(CValidError_imp& imp) :
  51.     CValidError_base(imp)
  52. {
  53. }
  54. CValidError_descr::~CValidError_descr(void)
  55. {
  56. }
  57. void CValidError_descr::ValidateSeqDescr(const CSeq_descr& descr)
  58. {
  59.     size_t  num_sources = 0,
  60.             num_titles = 0;
  61.     CConstRef<CSeqdesc> last_source,
  62.                         last_title;
  63.     ITERATE ( CSeq_descr::Tdata, dt, descr.Get() ) {
  64.         const CSeqdesc& desc = **dt;
  65.         switch ( desc.Which() ) {
  66.         case CSeqdesc::e_Mol_type:
  67.         case CSeqdesc::e_Modif:
  68.         case CSeqdesc::e_Method:
  69.             // obsolete
  70.             break;
  71.         case CSeqdesc::e_Name:
  72.             break;
  73.         case CSeqdesc::e_Title:
  74.             num_titles++;
  75.             last_title = &desc;
  76.             break;
  77.         
  78.         case CSeqdesc::e_Comment:
  79.             break;
  80.         case CSeqdesc::e_Num:
  81.             break;
  82.         case CSeqdesc::e_Maploc:
  83.             break;
  84.         case CSeqdesc::e_Pir:
  85.             break;
  86.         case CSeqdesc::e_Genbank:
  87.             break;
  88.         case CSeqdesc::e_Pub:
  89.             break;
  90.         case CSeqdesc::e_Region:
  91.             break;
  92.         case CSeqdesc::e_User:
  93.             break;
  94.         case CSeqdesc::e_Sp:
  95.             break;
  96.         case CSeqdesc::e_Dbxref:
  97.             break;
  98.         case CSeqdesc::e_Embl:
  99.             break;
  100.         case CSeqdesc::e_Create_date:
  101.             break;
  102.         case CSeqdesc::e_Update_date:
  103.             break;
  104.         case CSeqdesc::e_Prf:
  105.             break;
  106.         case CSeqdesc::e_Pdb:
  107.             break;
  108.         case CSeqdesc::e_Het:
  109.             break;
  110.         case CSeqdesc::e_Source:
  111.             num_sources++;
  112.             last_source = &desc;
  113.             break;
  114.         case CSeqdesc::e_Org:
  115.             break;
  116.         case CSeqdesc::e_Molinfo:
  117.             break;
  118.         default:
  119.             break;
  120.         }
  121.     }
  122.     if ( num_sources > 1 ) {
  123.         PostErr(eDiag_Error, eErr_SEQ_DESCR_MultipleBioSources,
  124.             "Undesired multiple source descriptors (reporting last one)", *last_source);
  125.     }
  126.     if ( num_titles > 1 ) {
  127.         PostErr(eDiag_Error, eErr_SEQ_DESCR_MultipleTitles,
  128.             "Multiple Title blocks (reporting last one)", *last_title);
  129.     }
  130. }
  131. END_SCOPE(validator)
  132. END_SCOPE(objects)
  133. END_NCBI_SCOPE
  134. /*
  135. * ===========================================================================
  136. *
  137. * $Log: validerror_descr.cpp,v $
  138. * Revision 1000.1  2004/06/01 19:48:00  gouriano
  139. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  140. *
  141. * Revision 1.7  2004/05/21 21:42:56  gorelenk
  142. * Added PCH ncbi_pch.hpp
  143. *
  144. * Revision 1.6  2003/06/16 21:17:44  shomrat
  145. * Changed error messages
  146. *
  147. * Revision 1.5  2003/03/31 14:40:19  shomrat
  148. * $id: -> $id$
  149. *
  150. * Revision 1.4  2003/03/11 16:04:09  kuznets
  151. * iterate -> ITERATE
  152. *
  153. * Revision 1.3  2003/02/12 17:58:05  shomrat
  154. * Addition of descriptor types in switch statement for future use
  155. *
  156. * Revision 1.2  2002/12/24 16:53:43  shomrat
  157. * Changes to include directives
  158. *
  159. * Revision 1.1  2002/12/23 20:16:26  shomrat
  160. * Initial submission after splitting former implementation
  161. *
  162. *
  163. * ===========================================================================
  164. */