⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lookup_wrap.c

📁 ncbi源码
💻 C
字号:
/* * =========================================================================== * PRODUCTION $Log: lookup_wrap.c,v $ * PRODUCTION Revision 1000.2  2004/06/01 18:08:11  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6 * PRODUCTION * =========================================================================== *//* $Id: lookup_wrap.c,v 1000.2 2004/06/01 18:08:11 gouriano Exp $ * =========================================================================== * *                            PUBLIC DOMAIN NOTICE *               National Center for Biotechnology Information * *  This software/database is a "United States Government Work" under the *  terms of the United States Copyright Act.  It was written as part of *  the author's offical duties as a United States Government employee and *  thus cannot be copyrighted.  This software/database is freely available *  to the public for use. The National Library of Medicine and the U.S. *  Government have not placed any restriction on its use or reproduction. * *  Although all reasonable efforts have been taken to ensure the accuracy *  and reliability of the software and data, the NLM and the U.S. *  Government do not and cannot warrant the performance or results that *  may be obtained by using this software or data. The NLM and the U.S. *  Government disclaim all warranties, express or implied, including *  warranties of performance, merchantability or fitness for any particular *  purpose. * *  Please cite the author in any work or product based on this material. * * =========================================================================== * * Author: Ilya Dondoshansky * *//** @file lookup_wrap.c * @todo FIXME file had copy-and-paste description! */static char const rcsid[] =     "$Id: lookup_wrap.c,v 1000.2 2004/06/01 18:08:11 gouriano Exp $";#include <algo/blast/core/lookup_wrap.h>#include <algo/blast/core/blast_lookup.h>#include <algo/blast/core/mb_lookup.h>#include <algo/blast/core/phi_lookup.h>#include <algo/blast/core/blast_rps.h>Int2 LookupTableWrapInit(BLAST_SequenceBlk* query,         const LookupTableOptions* lookup_options,	        ListNode* lookup_segments, BlastScoreBlk* sbp,         LookupTableWrap** lookup_wrap_ptr, RPSInfo *rps_info){   LookupTableWrap* lookup_wrap;   Boolean is_na;   /* Construct the lookup table. */   *lookup_wrap_ptr = lookup_wrap =       (LookupTableWrap*) calloc(1, sizeof(LookupTableWrap));   lookup_wrap->lut_type = lookup_options->lut_type;   switch ( lookup_options->lut_type ) {   case AA_LOOKUP_TABLE:      BlastAaLookupNew(lookup_options, (LookupTable* *)                       &lookup_wrap->lut);      BlastAaLookupIndexQueries( (LookupTable*) lookup_wrap->lut,                                 (lookup_options->use_pssm == TRUE) ? sbp->posMatrix : sbp->matrix,                                 query, lookup_segments, 1);      _BlastAaLookupFinalize((LookupTable*) lookup_wrap->lut);      break;   case MB_LOOKUP_TABLE:      MB_LookupTableNew(query, lookup_segments,          (MBLookupTable* *) &(lookup_wrap->lut), lookup_options);      break;   case NA_LOOKUP_TABLE:      LookupTableNew(lookup_options,          (LookupTable* *) &(lookup_wrap->lut), FALSE);	          BlastNaLookupIndexQuery((LookupTable*) lookup_wrap->lut, query,                              lookup_segments);      _BlastAaLookupFinalize((LookupTable*) lookup_wrap->lut);      break;   case PHI_AA_LOOKUP: case PHI_NA_LOOKUP:      is_na = (lookup_options->lut_type == PHI_NA_LOOKUP);      PHILookupTableNew(lookup_options,                         (PHILookupTable* *) &(lookup_wrap->lut), is_na, sbp);      /* Initialize the "pattern space" by number of pattern occurrencies          in query, effectively setting number of patterns in database to 1         at this time. */      sbp->effective_search_sp =          PHIBlastIndexQuery((PHILookupTable*) lookup_wrap->lut, query,                            lookup_segments, is_na);      break;   case RPS_LOOKUP_TABLE:      RPSLookupTableNew(rps_info, (RPSLookupTable* *)(&lookup_wrap->lut));      break;         default:      {         /* FIXME - emit error condition here */      }   } /* end switch */   return 0;}LookupTableWrap* LookupTableWrapFree(LookupTableWrap* lookup){   if (!lookup)       return NULL;   if (lookup->lut_type == MB_LOOKUP_TABLE) {      lookup->lut = (void*)          MBLookupTableDestruct((MBLookupTable*)lookup->lut);   } else if (lookup->lut_type == PHI_AA_LOOKUP ||               lookup->lut_type == PHI_NA_LOOKUP) {      lookup->lut = (void*)         PHILookupTableDestruct((PHILookupTable*)lookup->lut);   } else if (lookup->lut_type == RPS_LOOKUP_TABLE) {      lookup->lut = (void*)          RPSLookupTableDestruct((RPSLookupTable*)lookup->lut);   } else {      lookup->lut = (void*)          LookupTableDestruct((LookupTable*)lookup->lut);   }   sfree(lookup);   return NULL;}Int4 GetOffsetArraySize(LookupTableWrap* lookup){   Int4 offset_array_size;   switch (lookup->lut_type) {   case MB_LOOKUP_TABLE:      offset_array_size = OFFSET_ARRAY_SIZE +          ((MBLookupTable*)lookup->lut)->longest_chain;      break;   case PHI_AA_LOOKUP: case PHI_NA_LOOKUP:      offset_array_size = MIN_PHI_LOOKUP_SIZE;      break;   case AA_LOOKUP_TABLE: case NA_LOOKUP_TABLE:      offset_array_size = OFFSET_ARRAY_SIZE +          ((LookupTable*)lookup->lut)->longest_chain;      break;   case RPS_LOOKUP_TABLE:      offset_array_size = OFFSET_ARRAY_SIZE +          ((RPSLookupTable*)lookup->lut)->longest_chain;      break;   default:      offset_array_size = OFFSET_ARRAY_SIZE;      break;   }   return offset_array_size;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -