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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: lookup_wrap.c,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:08:11  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: lookup_wrap.c,v 1000.2 2004/06/01 18:08:11 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 offical 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: Ilya Dondoshansky
  35.  *
  36.  */
  37. /** @file lookup_wrap.c
  38.  * @todo FIXME file had copy-and-paste description!
  39.  */
  40. static char const rcsid[] = 
  41.     "$Id: lookup_wrap.c,v 1000.2 2004/06/01 18:08:11 gouriano Exp $";
  42. #include <algo/blast/core/lookup_wrap.h>
  43. #include <algo/blast/core/blast_lookup.h>
  44. #include <algo/blast/core/mb_lookup.h>
  45. #include <algo/blast/core/phi_lookup.h>
  46. #include <algo/blast/core/blast_rps.h>
  47. Int2 LookupTableWrapInit(BLAST_SequenceBlk* query, 
  48.         const LookupTableOptions* lookup_options,
  49.         ListNode* lookup_segments, BlastScoreBlk* sbp, 
  50.         LookupTableWrap** lookup_wrap_ptr, RPSInfo *rps_info)
  51. {
  52.    LookupTableWrap* lookup_wrap;
  53.    Boolean is_na;
  54.    /* Construct the lookup table. */
  55.    *lookup_wrap_ptr = lookup_wrap = 
  56.       (LookupTableWrap*) calloc(1, sizeof(LookupTableWrap));
  57.    lookup_wrap->lut_type = lookup_options->lut_type;
  58.    switch ( lookup_options->lut_type ) {
  59.    case AA_LOOKUP_TABLE:
  60.       BlastAaLookupNew(lookup_options, (LookupTable* *)
  61.                        &lookup_wrap->lut);
  62.       BlastAaLookupIndexQueries( (LookupTable*) lookup_wrap->lut,
  63.                                  (lookup_options->use_pssm == TRUE) ? sbp->posMatrix : sbp->matrix, 
  64.                                 query, lookup_segments, 1);
  65.       _BlastAaLookupFinalize((LookupTable*) lookup_wrap->lut);
  66.       break;
  67.    case MB_LOOKUP_TABLE:
  68.       MB_LookupTableNew(query, lookup_segments, 
  69.          (MBLookupTable* *) &(lookup_wrap->lut), lookup_options);
  70.       break;
  71.    case NA_LOOKUP_TABLE:
  72.       LookupTableNew(lookup_options, 
  73.          (LookupTable* *) &(lookup_wrap->lut), FALSE);
  74.     
  75.       BlastNaLookupIndexQuery((LookupTable*) lookup_wrap->lut, query,
  76.                               lookup_segments);
  77.       _BlastAaLookupFinalize((LookupTable*) lookup_wrap->lut);
  78.       break;
  79.    case PHI_AA_LOOKUP: case PHI_NA_LOOKUP:
  80.       is_na = (lookup_options->lut_type == PHI_NA_LOOKUP);
  81.       PHILookupTableNew(lookup_options, 
  82.                         (PHILookupTable* *) &(lookup_wrap->lut), is_na, sbp);
  83.       /* Initialize the "pattern space" by number of pattern occurrencies 
  84.          in query, effectively setting number of patterns in database to 1
  85.          at this time. */
  86.       sbp->effective_search_sp = 
  87.          PHIBlastIndexQuery((PHILookupTable*) lookup_wrap->lut, query,
  88.                             lookup_segments, is_na);
  89.       break;
  90.    case RPS_LOOKUP_TABLE:
  91.       RPSLookupTableNew(rps_info, (RPSLookupTable* *)(&lookup_wrap->lut));
  92.       break;
  93.       
  94.    default:
  95.       {
  96.          /* FIXME - emit error condition here */
  97.       }
  98.    } /* end switch */
  99.    return 0;
  100. }
  101. LookupTableWrap* LookupTableWrapFree(LookupTableWrap* lookup)
  102. {
  103.    if (!lookup)
  104.        return NULL;
  105.    if (lookup->lut_type == MB_LOOKUP_TABLE) {
  106.       lookup->lut = (void*) 
  107.          MBLookupTableDestruct((MBLookupTable*)lookup->lut);
  108.    } else if (lookup->lut_type == PHI_AA_LOOKUP || 
  109.               lookup->lut_type == PHI_NA_LOOKUP) {
  110.       lookup->lut = (void*)
  111.          PHILookupTableDestruct((PHILookupTable*)lookup->lut);
  112.    } else if (lookup->lut_type == RPS_LOOKUP_TABLE) {
  113.       lookup->lut = (void*) 
  114.          RPSLookupTableDestruct((RPSLookupTable*)lookup->lut);
  115.    } else {
  116.       lookup->lut = (void*) 
  117.          LookupTableDestruct((LookupTable*)lookup->lut);
  118.    }
  119.    sfree(lookup);
  120.    return NULL;
  121. }
  122. Int4 GetOffsetArraySize(LookupTableWrap* lookup)
  123. {
  124.    Int4 offset_array_size;
  125.    switch (lookup->lut_type) {
  126.    case MB_LOOKUP_TABLE:
  127.       offset_array_size = OFFSET_ARRAY_SIZE + 
  128.          ((MBLookupTable*)lookup->lut)->longest_chain;
  129.       break;
  130.    case PHI_AA_LOOKUP: case PHI_NA_LOOKUP:
  131.       offset_array_size = MIN_PHI_LOOKUP_SIZE;
  132.       break;
  133.    case AA_LOOKUP_TABLE: case NA_LOOKUP_TABLE:
  134.       offset_array_size = OFFSET_ARRAY_SIZE + 
  135.          ((LookupTable*)lookup->lut)->longest_chain;
  136.       break;
  137.    case RPS_LOOKUP_TABLE:
  138.       offset_array_size = OFFSET_ARRAY_SIZE + 
  139.          ((RPSLookupTable*)lookup->lut)->longest_chain;
  140.       break;
  141.    default:
  142.       offset_array_size = OFFSET_ARRAY_SIZE;
  143.       break;
  144.    }
  145.    return offset_array_size;
  146. }