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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: msladder.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 18:08:58  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: msladder.cpp,v 1000.3 2004/06/01 18:08:58 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 authors in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Lewis Y. Geer
  35.  *  
  36.  * File Description:
  37.  *    Classes to deal with ladders of m/z values
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <corelib/ncbi_limits.h>
  44. #include <algorithm>
  45. #include <math.h>
  46. #include "msladder.hpp"
  47. USING_NCBI_SCOPE;
  48. USING_SCOPE(objects);
  49. USING_SCOPE(omssa);
  50. /////////////////////////////////////////////////////////////////////////////
  51. //
  52. //  CLadder::
  53. //
  54. //  Contains a theoretical m/z ladder
  55. //
  56. // constructor
  57. CLadder::CLadder(void): LadderIndex(0), 
  58. Ladder(new int[kMSLadderMax]),
  59. Hit(new int[kMSLadderMax]),
  60. LadderSize(kMSLadderMax)
  61. }
  62. // constructor
  63. CLadder::CLadder(int SizeIn): LadderIndex(0),
  64.       Ladder(new int[SizeIn]),
  65.       Hit(new int[SizeIn]),
  66.       LadderSize(SizeIn)
  67. {
  68. }
  69. // copy constructor
  70. CLadder::CLadder(const CLadder& Old)
  71. {
  72.     CLadder();
  73.     Start = Old.Start;
  74.     Stop = Old.Stop;
  75.     Index = Old.Index;
  76.     Type = Old.Type;
  77.     Mass = Old.Mass;
  78.     LadderIndex = Old.LadderIndex;
  79.   
  80.     unsigned i;
  81.     for(i = 0; i < size(); i++) {
  82. (*this)[i] = *(Old.Ladder.get() + i);
  83. GetHit()[i] = *(Old.Hit.get() + i);
  84.     }
  85. }
  86. // destructor
  87. CLadder::~CLadder()
  88. {
  89. }
  90. // creates ladder
  91. // note that mass input is only used later on in another routine
  92. // to calculate score.
  93. bool CLadder::CreateLadder(int IonType, int ChargeIn, char *Sequence,
  94.    int SeqIndex,
  95.    int start, int stop, int mass,
  96.    CMassArray& MassArray, CAA &AA,
  97.    unsigned ModMask,
  98.    const char **Site,
  99.    int *DeltaMass,
  100.    int NumMod)
  101. {
  102.     Charge = ChargeIn;
  103.     int i, ion = static_cast <int> ((kTermMass[IonType] + Charge - 1) / 
  104.     Charge*MSSCALE + 
  105.     kIonTypeMass[IonType]/Charge*MSSCALE);
  106.     const int *IntMassArray = MassArray.GetIntMass();
  107.     char *AAMap = AA.GetMap();
  108.     Start = start;
  109.     Stop = stop;
  110.     Index = SeqIndex;  // gi or position in blastdb
  111.     Type = IonType;
  112.     Mass = static_cast <int> (mass - Charge*kProton*MSSCALE);
  113.     int delta;
  114.     int ModIndex;  // index into number of possible mod sites
  115.     if(kIonDirection[IonType] == 1) ModIndex = 0;
  116.     else ModIndex = NumMod - 1;
  117.     LadderIndex = stop - start;
  118.     for(i = 0; i < LadderIndex; i++) {
  119. GetHit()[i] = 0;
  120. if(kIonDirection[IonType] == 1) {
  121.     delta = IntMassArray[AAMap[Sequence[start + i]]];
  122.     if(!delta) return false; // unusable char (-BXZ*)
  123.     
  124.     if(NumMod > 0 && ModIndex < NumMod && Site[ModIndex] == &(Sequence[start + i])) {
  125. if (MaskSet(ModMask, ModIndex)) delta += DeltaMass[ModIndex];
  126. ModIndex++;
  127.     }
  128. }
  129. else {
  130.     delta = IntMassArray[AAMap[Sequence[stop - i]]];
  131.     if(!delta) return false; // unusable char (-BXZ*)
  132.     if(NumMod > 0 && ModIndex >= 0 && Site[ModIndex] == &(Sequence[stop - i])) {
  133. if (MaskSet(ModMask, ModIndex)) delta += DeltaMass[ModIndex];
  134. ModIndex--;
  135.     }
  136. }
  137. ion += delta/Charge;
  138. (*this)[i] = ion;
  139.     }
  140.     return true;
  141. }
  142. // or's the hitlist
  143. void CLadder::Or(CLadder& LadderIn)
  144. {
  145.     int i;
  146.     if(kIonDirection[Type] ==  LadderIn.GetType()) {
  147. for(i = 0; i < LadderIndex; i++) {
  148.     GetHit()[i] = GetHit()[i] + LadderIn.GetHit()[i];
  149. }
  150.     }
  151.     else if( size() != static_cast <unsigned> (Stop - Start)) return;  // unusable chars
  152.     else {  // different direction
  153. for(i = 0; i < LadderIndex; i++) {
  154.     GetHit()[i] = GetHit()[i] + LadderIn.GetHit()[LadderIndex - i - 1];
  155. }
  156.     }
  157. }
  158. // sees if ladder contains the given mass value
  159. bool CLadder::Contains(int MassIndex, int Tolerance)
  160. {
  161.     int i;
  162.     // go thru ladder 
  163.     for(i = 0; i < LadderIndex; i++) {
  164. if((*this)[i] <= MassIndex + Tolerance && 
  165.    (*this)[i] > MassIndex - Tolerance ) return true;
  166.     }
  167.     return false;
  168. }
  169. bool CLadder::ContainsFast(int MassIndex, int Tolerance)
  170. {
  171.     int x, l(0), r(LadderIndex - 1);
  172.     
  173.     while(l <= r) {
  174.         x = (l + r)/2;
  175.         if ((*this)[x] < MassIndex - Tolerance) 
  176.     l = x + 1;
  177.         else if ((*this)[x] > MassIndex + Tolerance)
  178.     r = x - 1;
  179. else return true;
  180.     } 
  181.     
  182.     if (x < LadderIndex - 1 && x >= 0 &&
  183. (*this)[x+1] < MassIndex + Tolerance && (*this)[x+1] > 
  184. MassIndex - Tolerance) 
  185. return true;
  186.     return false;
  187. }