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

📄 blast_kappa.h

📁 ncbi源码
💻 H
字号:
/* * =========================================================================== * PRODUCTION $Log: blast_kappa.h,v $ * PRODUCTION Revision 1000.0  2004/06/01 18:11:58  gouriano * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5 * PRODUCTION * =========================================================================== *//* $Id: blast_kappa.h,v 1000.0 2004/06/01 18:11:58 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 official 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: Alejandro Schaffer * *//** @file blast_kappa.h * Header file for composition-based statistics * @todo FIXME needs doxygen comments */#ifndef __BLAST_KAPPA__#define __BLAST_KAPPA__#ifdef __cplusplusextern "C" {#endif/** Top level routine to recompute alignments for each *  match found by the gapped BLAST algorithm *  A linked list of alignments is returned (param hitList); the alignments  *  are sorted according to the lowest E-value of the best alignment for each *  matching sequence; alignments for the same matching sequence *  are in the list consecutively regardless of the E-value of the *  secondary alignments. Ties in sorted order are much rarer than *  for the standard BLAST method, but are broken deterministically *  based on the index of the matching sequences in the database. * @param queryBlk query sequence [in] * @param query_info query information [in] * @param sbp (Karlin-Altschul) information for search [in] * @param hitList input hits for further investigation, output results [in][out] * @param seqSrc used to fetch database/match sequences [in] * @param scoringParams parameters used for scoring (matrix, gap costs etc.) [in] * @param extendParams parameters used for extension [in] * @param hitsavingParams parameters used for saving hits [in] * @param psiOptions options related to psi-blast [in] * @return 0 on success, otherwise failure.*/Int2Kappa_RedoAlignmentCore(BLAST_SequenceBlk * queryBlk,                  BlastQueryInfo* query_info,                  BlastScoreBlk* sbp,                  BlastHitList* hitList,                  const BlastSeqSrc* seqSrc,                  BlastScoringParameters* scoringParams,                  const BlastExtensionParameters* extendParams,                  const BlastHitSavingParameters* hitsavingParams,                  const PSIBlastOptions* psiOptions);#ifdef __cplusplus}#endif/* * =========================================================================== * * $Log: blast_kappa.h,v $ * Revision 1000.0  2004/06/01 18:11:58  gouriano * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5 * * Revision 1.5  2004/05/24 17:27:37  madden * Doxygen fix * * Revision 1.4  2004/05/20 15:20:57  madden * Doxygen compliance fixes * * Revision 1.3  2004/05/19 17:03:20  madden * Remove (to blast_kappa.c) #defines for Xchar and StarChar * * Revision 1.2  2004/05/19 14:52:01  camacho * 1. Added doxygen tags to enable doxygen processing of algo/blast/core * 2. Standardized copyright, CVS $Id string, $Log and rcsid formatting and i *    location * 3. Added use of @todo doxygen keyword * * Revision 1.1  2004/05/18 13:22:33  madden * SmithWaterman and composition-based stats code * * =========================================================================== */#endif /* __BLAST_KAPPA__ */

⌨️ 快捷键说明

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