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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: blast_kappa.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 18:11:58  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: blast_kappa.h,v 1000.0 2004/06/01 18:11: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 author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Alejandro Schaffer
  35.  *
  36.  */
  37. /** @file blast_kappa.h
  38.  * Header file for composition-based statistics
  39.  * @todo FIXME needs doxygen comments
  40.  */
  41. #ifndef __BLAST_KAPPA__
  42. #define __BLAST_KAPPA__
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. /** Top level routine to recompute alignments for each
  47.  *  match found by the gapped BLAST algorithm
  48.  *  A linked list of alignments is returned (param hitList); the alignments 
  49.  *  are sorted according to the lowest E-value of the best alignment for each
  50.  *  matching sequence; alignments for the same matching sequence
  51.  *  are in the list consecutively regardless of the E-value of the
  52.  *  secondary alignments. Ties in sorted order are much rarer than
  53.  *  for the standard BLAST method, but are broken deterministically
  54.  *  based on the index of the matching sequences in the database.
  55.  * @param queryBlk query sequence [in]
  56.  * @param query_info query information [in]
  57.  * @param sbp (Karlin-Altschul) information for search [in]
  58.  * @param hitList input hits for further investigation, output results [in][out]
  59.  * @param seqSrc used to fetch database/match sequences [in]
  60.  * @param scoringParams parameters used for scoring (matrix, gap costs etc.) [in]
  61.  * @param extendParams parameters used for extension [in]
  62.  * @param hitsavingParams parameters used for saving hits [in]
  63.  * @param psiOptions options related to psi-blast [in]
  64.  * @return 0 on success, otherwise failure.
  65. */
  66. Int2
  67. Kappa_RedoAlignmentCore(BLAST_SequenceBlk * queryBlk,
  68.                   BlastQueryInfo* query_info,
  69.                   BlastScoreBlk* sbp,
  70.                   BlastHitList* hitList,
  71.                   const BlastSeqSrc* seqSrc,
  72.                   BlastScoringParameters* scoringParams,
  73.                   const BlastExtensionParameters* extendParams,
  74.                   const BlastHitSavingParameters* hitsavingParams,
  75.                   const PSIBlastOptions* psiOptions);
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. /*
  80.  * ===========================================================================
  81.  *
  82.  * $Log: blast_kappa.h,v $
  83.  * Revision 1000.0  2004/06/01 18:11:58  gouriano
  84.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5
  85.  *
  86.  * Revision 1.5  2004/05/24 17:27:37  madden
  87.  * Doxygen fix
  88.  *
  89.  * Revision 1.4  2004/05/20 15:20:57  madden
  90.  * Doxygen compliance fixes
  91.  *
  92.  * Revision 1.3  2004/05/19 17:03:20  madden
  93.  * Remove (to blast_kappa.c) #defines for Xchar and StarChar
  94.  *
  95.  * Revision 1.2  2004/05/19 14:52:01  camacho
  96.  * 1. Added doxygen tags to enable doxygen processing of algo/blast/core
  97.  * 2. Standardized copyright, CVS $Id string, $Log and rcsid formatting and i
  98.  *    location
  99.  * 3. Added use of @todo doxygen keyword
  100.  *
  101.  * Revision 1.1  2004/05/18 13:22:33  madden
  102.  * SmithWaterman and composition-based stats code
  103.  *
  104.  * ===========================================================================
  105.  */
  106. #endif /* __BLAST_KAPPA__ */