/usr/include/ncbi/blastkar.h is in libncbi6-dev 6.1.20120620-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 | /* ===========================================================================
*
* 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.
*
* ===========================================================================*/
/*****************************************************************************
File name: blastkar.h
Author: Tom Madden
Contents: definitions and prototypes used by blastkar.c to calculate BLAST
statistics.
******************************************************************************/
/* $Revision: 6.41 $
* $Log: blastkar.h,v $
* Revision 6.41 2005/10/06 12:49:39 madden
* Add prototypes for BlastKarlinGetNuclAlphaBeta and BlastKarlinBlkNuclGappedCalc
*
* Revision 6.40 2005/07/27 17:48:57 coulouri
* remove hardcoded paths
*
* Revision 6.39 2004/09/28 16:04:19 papadopo
* From Michael Gertz:
* 1. Pass the effective database size into BlastSmallGapSumE,
* BlastLargeGapSumE and BlastUnevenGapSumE. The routines use this
* value in a simplified formula to compute the e-value of singleton sets.
* 2. Caused all routines for calculating the significance of multiple
* distinct alignments (BlastSmallGapSumE, BlastLargeGapSumE and
* BlastUnevenGapSumE) to use
*
* sum_{i in linked_set} (\lambda_i s_i - \ln K_i)
*
* as the weighted sum score, where (\lambda_i, K_i) are taken from
* the appropriate query context.
*
* Revision 6.38 2004/04/28 14:36:34 madden
* Changes from Mike Gertz:
* - Added a function prototype for BlastGapDecayDivisor
* - Removed the function prototypes for BlastGapDecay and BlastGapDecayInverse
* - Modified function prototypes for BlastSmallGapSumE, BlastLargeGapSumE and
* BlastUnevenGapSumE
*
* Revision 6.37 2004/04/23 13:20:25 madden
* Change: BLAST_KARLIN_K_SUMLIMIT_DEFAULT from 0.01 to 0.00001
*
* Revision 6.36 2004/03/31 18:39:24 kans
* fixed typo in BlastBlastComputeLengthAdjustment
*
* Revision 6.35 2004/03/31 17:58:51 papadopo
* Mike Gertz' changes for length adjustment calculations
*
* Revision 6.34 2003/12/12 16:00:46 madden
* Add gap_decay_rate to BlastCutoffs, remove BlastCutoffs_simple, removal of defunct _real variables (all from Mike Gertz)
*
* Revision 6.33 2003/11/28 22:39:41 camacho
* +static keyword to BlastKarlinLtoH
*
* Revision 6.32 2003/11/26 19:09:09 madden
* Remove ref to BlastKarlinLambdaBis (no longer needed per Mike Gertz)
*
* Revision 6.31 2003/02/27 19:07:56 madden
* Add functions PrintMatrixMessage and PrintAllowedValuesMessage
*
* Revision 6.30 2003/02/26 18:23:50 madden
* Add functions BlastKarlinkGapBlkFill and BlastKarlinReportAllowedValues, call from BlastKarlinBlkGappedCalcEx
*
* Revision 6.29 2002/12/04 13:28:37 madden
* Add effective length parameters
*
* Revision 6.28 2002/09/03 14:21:50 camacho
* Changed type of karlinK from FloatHi to Nlm_FloatHi
*
* Revision 6.27 2002/08/29 13:58:08 camacho
* Added field to store K parameter associated with posMatrix
*
* Revision 6.26 2002/03/18 21:31:56 madden
* Added comments
*
* Revision 6.25 2000/12/28 16:23:24 madden
* Function getAlphaBeta from AS
*
* Revision 6.24 2000/12/26 17:46:20 madden
* Add function BlastKarlinGetMatrixValuesEx2 to return alpha and beta
*
* Revision 6.23 2000/11/24 22:07:33 shavirin
* Added new function BlastResFreqFree().
*
* Revision 6.22 2000/09/27 21:27:15 dondosha
* Added original_matrix member to BLAST_Matrix structure
*
* Revision 6.21 2000/09/12 16:03:51 dondosha
* Added functions to create and destroy matrix used in txalign
*
* Revision 6.20 2000/08/31 15:45:07 dondosha
* Added function BlastUnevenGapSumE for sum evalue computation with different gap size on two sequences
*
* Revision 6.19 2000/08/23 18:50:02 madden
* Changes to support decline-to-align checking
*
* Revision 6.18 2000/08/04 15:49:26 sicotte
* added BlastScoreBlkMatCreateEx(reward,penalty) and BlastKarlinGetDefaultMatrixValues as external functions
*
* Revision 6.17 2000/07/07 21:20:08 vakatov
* Get all "#include" out of the 'extern "C" { }' scope!
*
* Revision 6.16 2000/05/26 17:29:55 shavirin
* Added array of pos frequencies into BLAST_Matrix structure and it's
* handling.
*
* Revision 6.15 2000/04/17 20:41:37 madden
* Added BLAST_MatrixFetch
*
* Revision 6.14 1999/12/22 21:06:35 shavirin
* Added new function BlastPSIMaxScoreGet().
*
* Revision 6.13 1999/09/16 17:38:42 madden
* Add posFreqs for position-specific frequencies
*
* Revision 6.12 1999/03/17 16:49:11 madden
* Removed comment within comment
*
* Revision 6.11 1998/12/31 18:17:05 madden
* Added strand option
*
* Revision 6.10 1998/09/11 19:02:07 madden
* Added paramC
*
* Revision 6.9 1998/07/17 15:39:58 madden
* Changes for Effective search space.
*
* Revision 6.8 1998/04/24 19:27:55 madden
* Added BlastKarlinBlkStandardCalcEx for ideal KarlinBlk
*
* Revision 6.7 1998/04/10 15:05:49 madden
* Added pref_flags return by value to BlastKarlinGetMatrixValues
*
* Revision 6.6 1998/03/09 17:15:04 madden
* Added BlastKarlinGetMatrixValues
*
* Revision 6.5 1998/02/26 22:34:35 madden
* Changes for 16 bit windows
*
* Revision 6.4 1998/02/06 18:28:07 madden
* Added functions to produce pseudo-scores from p and e values
*
* Revision 6.3 1997/11/14 17:14:57 madden
* Added Karlin parameter to matrix structure
*
* Revision 6.2 1997/11/07 00:48:10 madden
* Added defintitions and functions for BLAST_Matrix
*
* Revision 6.1 1997/09/22 17:36:26 madden
* MACROS for position-specific matrices from Andy Neuwald
*
* Revision 6.0 1997/08/25 18:52:41 madden
* Revision changed to 6.0
*
* Revision 1.16 1997/08/19 18:19:49 madden
* BLAST_Score is Int4, not long
*
* Revision 1.15 1997/07/14 15:31:07 madden
* Changed call to BlastKarlinBlkGappedCalc
*
* Revision 1.14 1997/05/01 15:53:16 madden
* Addition of extra KarlinBlk's for psi-blast
*
* Revision 1.13 1997/01/22 17:46:30 madden
* Added BLAST_ScorePtr PNTR posMatrix.
*
* Revision 1.12 1996/12/16 14:35:48 madden
* Removed gapped_calculation Boolean.
*
* Revision 1.11 1996/12/10 17:30:59 madden
* Changed statistics for gapped blastp
*
* Revision 1.10 1996/12/03 19:13:47 madden
* Made BlastRes functions non-static.
*
* Revision 1.9 1996/11/26 19:55:25 madden
* Added check for matrices in standard places.
*
* Revision 1.8 1996/11/18 14:49:26 madden
* Rewrote BlastScoreSetAmbigRes to take multiple ambig. chars.
*
* Revision 1.7 1996/11/08 21:45:03 madden
* Added BLASTNA_SEQ_CODE define.
*
* Revision 1.6 1996/10/03 20:49:29 madden
* Added function BlastKarlinBlkStandardCalc to calculate standard
* Karlin parameters for blastx and tblastx.
*
* Revision 1.5 1996/10/02 21:43:31 madden
* Replaced kbp and sfp with arrays of same.
*
* Revision 1.4 1996/09/30 21:56:12 madden
* Replaced query alphabet of ncbi2na with blastna alphabet.
*
* Revision 1.3 1996/09/10 19:40:35 madden
* Added function BlastScoreBlkMatCreate for blastn matrices.
*
* Revision 1.2 1996/08/22 20:38:11 madden
* Changed all doubles and floats to Nlm_FloatHi.
*
* Revision 1.1 1996/08/05 19:47:42 madden
* Initial revision
*
* Revision 1.19 1996/06/21 15:23:54 madden
* Corelibed BlastSumP.
*
* Revision 1.18 1996/06/21 15:14:55 madden
* Made some functions static, added LIBCALL to others.
*
* Revision 1.17 1996/06/04 15:34:55 madden
* *** empty log message ***
*
* Revision 1.16 1996/05/22 20:38:05 madden
* *** empty log message ***
*
* Revision 1.15 1996/05/20 21:18:51 madden
* Added BLASTMatrixStructure.
*
* Revision 1.14 1996/05/16 19:50:15 madden
* Added documentation block.
*
* Revision 1.13 1996/04/24 12:53:12 madden
* *** empty log message ***
*
* Revision 1.12 1996/04/16 15:34:10 madden
* renamed variable in BlastLargeGapSumE.
*
* Revision 1.11 1996/03/25 16:34:19 madden
* Changes to mimic old statistics.
*
* Revision 1.10 1996/02/15 23:20:35 madden
* Added query length to a number of calls.
*
* Revision 1.9 1996/01/17 23:19:13 madden
* Added BlastScoreSetAmbigRes.
*
* Revision 1.8 1996/01/17 17:01:19 madden
* Fixed BlastSmallGapSumE and BlastLargeGapSumE.
*
* Revision 1.7 1996/01/17 13:46:55 madden
* Added prototype for BlastKarlinPtoE.
*
* Revision 1.6 1996/01/06 18:58:28 madden
* Added prototype for BlastSumP.
*
* Revision 1.5 1995/12/30 18:39:27 madden
* added q_frame and s_frame to KarlinBlkPtr.
*
* Revision 1.4 1995/12/26 23:05:19 madden
* *** empty log message ***
*
* Revision 1.3 1995/12/26 20:28:10 madden
* Replaced BLAST_ScoreMat wiht BLAST_ScorePtr PNTR.
*
* Revision 1.2 1995/12/26 14:26:22 madden
* *** empty log message ***
*
* Revision 1.1 1995/12/21 23:07:35 madden
* Initial revision
*
*
* */
#ifndef __BLASTKAR__
#define __BLASTKAR__
#include <ncbi.h>
#include <objalign.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
Defines for the matrix 'preferences' (as specified by S. Altschul).
*/
#define BLAST_MATRIX_NOMINAL 0
#define BLAST_MATRIX_PREFERRED 1
#define BLAST_MATRIX_BEST 2
/****************************************************************************
For more accuracy in the calculation of K, set K_SUMLIMIT to 0.00001.
For high speed in the calculation of K, use a K_SUMLIMIT of 0.001
Note: statistical significance is often not greatly affected by the value
of K, so high accuracy is generally unwarranted.
*****************************************************************************/
/* K_SUMLIMIT_DEFAULT == sumlimit used in BlastKarlinLHtoK() */
#define BLAST_KARLIN_K_SUMLIMIT_DEFAULT 0.0001
/* LAMBDA_ACCURACY_DEFAULT == accuracy to which Lambda should be calc'd */
#define BLAST_KARLIN_LAMBDA_ACCURACY_DEFAULT (1.e-5)
/* LAMBDA_ITER_DEFAULT == no. of iterations in LambdaBis = ln(accuracy)/ln(2)*/
#define BLAST_KARLIN_LAMBDA_ITER_DEFAULT 17
/* Initial guess for the value of Lambda in BlastKarlinLambdaNR */
#define BLAST_KARLIN_LAMBDA0_DEFAULT 0.5
#define BLAST_KARLIN_K_ITER_MAX 100
#define BLAST_SUMP_EPSILON_DEFAULT 0.002 /* accuracy for SumP calculations */
/*
Maps the ncbi4na alphabet to blastna, an alphabet that blastn uses
as the first four characters have the same representation as in
ncbi2na.
*/
#define BLASTNA_SIZE 16
/* Identifies the blastna alphabet, for use in blast only. */
#define BLASTNA_SEQ_CODE 99
#define PSI_ALPHABET_SIZE 26 /* For PSI Blast this is the only 26 */
extern Uint1 ncbi4na_to_blastna[BLASTNA_SIZE];
extern Uint1 blastna_to_ncbi4na[BLASTNA_SIZE];
/*************************************************************************
Structure to the Karlin-Blk parameters.
This structure was (more or less) copied from the old
karlin.h.
**************************************************************************/
typedef struct {
Nlm_FloatHi Lambda; /* Lambda value used in statistics */
Nlm_FloatHi K, logK; /* K value used in statistics */
Nlm_FloatHi H; /* H value used in statistics */
Nlm_FloatHi paramC; /* for use in seed. */
} BLAST_KarlinBlk, PNTR BLAST_KarlinBlkPtr;
/********************************************************************
Structures relating to scoring or the BLAST_ScoreBlk
********************************************************************/
/* BLAST_Score must be a signed datatype */
typedef Int4 BLAST_Score, PNTR BLAST_ScorePtr;
/*
SCORE_MIN is (-2**31 + 1)/2 because it has been observed more than once that
a compiler did not properly calculate the quantity (-2**31)/2. The list
of compilers which failed this operation have at least at some time included:
NeXT and a version of AIX/370's MetaWare High C R2.1r.
For this reason, SCORE_MIN is not simply defined to be LONG_MIN/2.
*/
#define BLAST_SCORE_MIN INT2_MIN
#define BLAST_SCORE_MAX INT2_MAX
#if defined(OS_DOS) || defined(OS_MAC)
#define BLAST_SCORE_1MIN (-100)
#define BLAST_SCORE_1MAX ( 100)
#else
#define BLAST_SCORE_1MIN (-10000)
#define BLAST_SCORE_1MAX ( 1000)
#endif
#define BLAST_SCORE_RANGE_MAX (BLAST_SCORE_1MAX - BLAST_SCORE_1MIN)
typedef struct _blast_score_freq {
BLAST_Score score_min, score_max;
BLAST_Score obs_min, obs_max;
Nlm_FloatHi score_avg;
Nlm_FloatHi PNTR sprob0, PNTR sprob;
} BLAST_ScoreFreq, PNTR BLAST_ScoreFreqPtr;
#define BLAST_MATRIX_SIZE 32
typedef struct _blast_matrix_struct {
BLAST_ScorePtr matrix[BLAST_MATRIX_SIZE];
BLAST_Score long_matrix[BLAST_MATRIX_SIZE*BLAST_MATRIX_SIZE];
} BLASTMatrixStructure, PNTR BLASTMatrixStructurePtr;
typedef struct _blast_scoreblk {
Boolean protein_alphabet; /* TRUE if alphabet_code is for a
protein alphabet (e.g., ncbistdaa etc.), FALSE for nt. alphabets. */
Uint1 alphabet_code; /* NCBI alphabet code. */
Int2 alphabet_size; /* size of alphabet. */
Int2 alphabet_start; /* numerical value of 1st letter. */
BLASTMatrixStructurePtr matrix_struct; /* Holds info about matrix. */
BLAST_ScorePtr PNTR matrix; /* Substitution matrix */
BLAST_ScorePtr PNTR posMatrix; /* Sub matrix for position depend BLAST. */
Nlm_FloatHi karlinK; /* Karlin-Altschul parameter associated with posMatrix */
Int2 mat_dim1, mat_dim2; /* dimensions of matrix. */
BLAST_ScorePtr maxscore; /* Max. score for each letter */
BLAST_Score loscore, hiscore; /* Min. & max. substitution scores */
BLAST_Score penalty, reward; /* penalty and reward for blastn. */
Boolean read_in_matrix; /* If TRUE, matrix is read in, otherwise
produce one from penalty and reward above. */
BLAST_ScoreFreqPtr PNTR sfp; /* score frequencies. */
Nlm_FloatHi **posFreqs; /*matrix of position specific frequencies*/
/* kbp & kbp_gap are ptrs that should be set to kbp_std, kbp_psi, etc. */
BLAST_KarlinBlkPtr PNTR kbp; /* Karlin-Altschul parameters. */
BLAST_KarlinBlkPtr PNTR kbp_gap; /* K-A parameters for gapped alignments. */
/* Below are the Karlin-Altschul parameters for non-position based ('std')
and position based ('psi') searches. */
BLAST_KarlinBlkPtr *kbp_std,
*kbp_psi,
*kbp_gap_std,
*kbp_gap_psi;
BLAST_KarlinBlkPtr kbp_ideal; /* Ideal values (for query with average database composition). */
Int2 number_of_contexts; /* Used by sfp and kbp, how large are these*/
Int2 matid; /* id number of matrix. */
CharPtr name; /* name of matrix. */
Uint1Ptr ambiguous_res; /* Array of ambiguous res. (e.g, 'X', 'N')*/
Int2 ambig_size, /* size of array above. */
ambig_occupy; /* How many occupied? */
ValNodePtr comments; /* Comments about matrix. */
/**** Andy's modification ****/
Int4 query_length; /* the length of the query. */
/**** end Andy's modification ****/
Int4 length_adjustment; /* length to trim query/db sequence by. */
Int4 effective_query_length; /* shortened query length. */
Int8 effective_db_length; /* trimmed db length */
Int8 effective_search_sp; /* product of above two */
Boolean round_down; /* round down to next even score if the score is odd. */
} BLAST_ScoreBlk, PNTR BLAST_ScoreBlkPtr;
/* Used for communicating between BLAST and other applications. */
typedef struct _blast_matrix {
Boolean is_prot; /* Matrix is for proteins */
CharPtr name; /* Name of Matrix (i.e., BLOSUM62). */
/* Position-specific BLAST rows and columns are different, otherwise they are the
alphabet length. */
Int4 rows, /* query length + 1 for PSSM. */
columns; /* alphabet size in all cases (26). */
Int4Ptr PNTR matrix;
Nlm_FloatHi ** posFreqs;
Nlm_FloatHi karlinK;
Int4Ptr PNTR original_matrix;
} BLAST_Matrix, PNTR BLAST_MatrixPtr;
typedef struct _blast_rescomp {
Uint1 alphabet_code;
Int4Ptr comp, /* composition of alphabet, array starts at beginning of alphabet. */
comp0; /* Same array as above, starts at zero. */
} BLAST_ResComp, PNTR BLAST_ResCompPtr;
typedef struct _blast_resfreq {
Uint1 alphabet_code;
Nlm_FloatHi PNTR prob; /* probs, (possible) non-zero offset. */
Nlm_FloatHi PNTR prob0; /* probs, zero offset. */
} BLAST_ResFreq, PNTR BLAST_ResFreqPtr;
BLAST_ScoreBlkPtr LIBCALL BLAST_ScoreBlkNew PROTO((Uint1 alphabet, Int2 number_of_contexts));
BLAST_ScoreBlkPtr LIBCALL BLAST_ScoreBlkDestruct PROTO((BLAST_ScoreBlkPtr sbp));
Int2 LIBCALL BlastScoreSetAmbigRes PROTO((BLAST_ScoreBlkPtr sbp, Char ambiguous_res));
Int2 LIBCALL BlastScoreBlkFill PROTO((BLAST_ScoreBlkPtr sbp, CharPtr string, Int4 length, Int2 context_number));
Int2 LIBCALL BlastScoreBlkMatFill PROTO((BLAST_ScoreBlkPtr sbp, CharPtr matrix));
BLAST_ScorePtr PNTR LIBCALL BlastScoreBlkMatCreateEx(BLAST_ScorePtr PNTR matrix,BLAST_Score penalty, BLAST_Score reward);
Int2 LIBCALL BlastScoreBlkMatRead PROTO((BLAST_ScoreBlkPtr sbp, FILE *fp));
Int2 LIBCALL BlastScoreBlkMaxScoreSet PROTO((BLAST_ScoreBlkPtr sbp));
BLAST_ScorePtr BlastPSIMaxScoreGet(BLAST_ScorePtr PNTR posMatrix,
Int4 start, Int4 length);
BLAST_ResCompPtr LIBCALL BlastResCompNew PROTO((BLAST_ScoreBlkPtr sbp));
BLAST_ResCompPtr LIBCALL BlastResCompDestruct PROTO((BLAST_ResCompPtr rcp));
Int2 LIBCALL BlastResCompStr PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResCompPtr rcp, CharPtr str, Int4 length));
/*
Produces a Karlin Block, and parameters, with standard protein frequencies.
*/
Int2 LIBCALL BlastKarlinBlkStandardCalc PROTO((BLAST_ScoreBlkPtr sbp, Int2 context_start, Int2 context_end));
BLAST_KarlinBlkPtr LIBCALL BlastKarlinBlkStandardCalcEx PROTO((BLAST_ScoreBlkPtr sbp));
/*
Functions taken from the OLD karlin.c
*/
BLAST_KarlinBlkPtr LIBCALL BlastKarlinBlkCreate PROTO((void));
BLAST_KarlinBlkPtr LIBCALL BlastKarlinBlkDestruct PROTO((BLAST_KarlinBlkPtr));
Int2 LIBCALL BlastKarlinBlkCalc PROTO((BLAST_KarlinBlkPtr kbp, BLAST_ScoreFreqPtr sfp));
Int2 LIBCALL BlastKarlinBlkGappedCalc PROTO((BLAST_KarlinBlkPtr kbp, Int4 gap_open, Int4 gap_extend, CharPtr matrix_name, ValNodePtr PNTR error_return));
Int2 LIBCALL BlastKarlinBlkGappedCalcEx PROTO((BLAST_KarlinBlkPtr kbp, Int4 gap_open, Int4 gap_extend, Int4 decline_align, CharPtr matrix_name, ValNodePtr PNTR error_return));
/*
Attempts to fill KarlinBlk for given gap opening, extensions etc.
Will return non-zero status if that fails.
return values: -1 if matrix_name is NULL;
1 if matrix not found
2 if matrix found, but open, extend etc. values not supported.
*/
Int2 LIBCALL BlastKarlinkGapBlkFill(BLAST_KarlinBlkPtr kbp, Int4 gap_open, Int4 gap_extend, Int4 decline_align, CharPtr matrix_name);
/* Prints a messages about the allowed matrices, BlastKarlinkGapBlkFill should return 1 before this is called. */
CharPtr PrintMatrixMessage(const Char *matrix);
/* Prints a messages about the allowed open etc values for the given matrix,
BlastKarlinkGapBlkFill should return 2 before this is called. */
CharPtr PrintAllowedValuesMessage(const Char *matrix, Int4 gap_open, Int4 gap_extend, Int4 decline_align);
Int2 LIBCALL BlastKarlinReportAllowedValues(const Char *matrix_name, ValNodePtr PNTR error_return);
Nlm_FloatHi BlastKarlinLHtoK PROTO((BLAST_ScoreFreqPtr sfp, Nlm_FloatHi lambda, Nlm_FloatHi H));
Nlm_FloatHi BlastKarlinLambdaNR PROTO((BLAST_ScoreFreqPtr sfp));
BLAST_Score LIBCALL BlastKarlinEtoS PROTO((Nlm_FloatHi E, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi qlen, Nlm_FloatHi dblen));
BLAST_Score LIBCALL BlastKarlinEtoS_simple PROTO((Nlm_FloatHi E, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi searchsp));
Nlm_FloatHi LIBCALL BlastKarlinPtoE PROTO((Nlm_FloatHi p));
Nlm_FloatHi LIBCALL BlastKarlinEtoP PROTO((Nlm_FloatHi x));
Nlm_FloatHi LIBCALL BlastKarlinStoP PROTO((BLAST_Score S, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi qlen, Nlm_FloatHi dblen));
Nlm_FloatHi LIBCALL BlastKarlinStoP_simple PROTO((BLAST_Score S, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi searchsp));
Nlm_FloatHi LIBCALL BlastKarlinStoE PROTO((BLAST_Score S, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi qlen, Nlm_FloatHi dblen));
Nlm_FloatHi LIBCALL BlastKarlinStoE_simple PROTO((BLAST_Score S, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi searchsp));
Nlm_FloatHi LIBCALL BlastGapDecayDivisor PROTO((Nlm_FloatHi decayrate, unsigned nsegs ));
Int2 LIBCALL BlastCutoffs PROTO((BLAST_ScorePtr S, Nlm_FloatHi PNTR E, BLAST_KarlinBlkPtr kbp, Nlm_FloatHi search_sp, Nlm_Boolean dodecay,
Nlm_FloatHi gap_decay_rate));
Nlm_FloatHi LIBCALL BlastKarlinStoLen PROTO((BLAST_KarlinBlkPtr kbp, BLAST_Score S));
/* SumP function. Called by BlastSmallGapSumE and BlastLargeGapSumE. */
Nlm_FloatHi LIBCALL BlastSumP PROTO((Int4 r, Nlm_FloatHi s));
/* Functions to calculate SumE (for large and small gaps). */
Nlm_FloatHi LIBCALL BlastSmallGapSumE PROTO((Int4 start_points, Int2 num, Nlm_FloatHi xsum, Int4 query_length, Int4 subject_length, Int8 dblen_eff, Nlm_FloatHi weight_divisor));
Nlm_FloatHi LIBCALL BlastUnevenGapSumE PROTO((Int4 query_start_points, Int4 subject_start_points, Int2 num, Nlm_FloatHi xsum, Int4 query_length, Int4 subject_length, Int8 dblen_eff, Nlm_FloatHi weight_divisor));
Nlm_FloatHi LIBCALL BlastLargeGapSumE PROTO((Int2 num, Nlm_FloatHi xsum, Int4 query_length, Int4 subject_length, Int8 dblen_eff, Nlm_FloatHi weight_divisor));
/* Used to produce random sequences. */
CharPtr LIBCALL BlastRepresentativeResidues PROTO((Int2 length));
Int2 LIBCALL BlastResFreqNormalize PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResFreqPtr rfp, Nlm_FloatHi norm));
BLAST_ResFreqPtr LIBCALL BlastResFreqNew PROTO((BLAST_ScoreBlkPtr sbp));
void LIBCALL BlastResFreqFree PROTO((BLAST_ResFreqPtr rfp));
BLAST_ResFreqPtr LIBCALL BlastResFreqDestruct PROTO((BLAST_ResFreqPtr rfp));
Int2 LIBCALL BlastResFreqString PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResFreqPtr rfp, CharPtr string, Int4 length));
Int2 LIBCALL BlastResFreqStdComp PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResFreqPtr rfp));
Int2 LIBCALL BlastResFreqResComp PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResFreqPtr rfp, BLAST_ResCompPtr rcp));
Int2 LIBCALL BlastResFreqClr PROTO((BLAST_ScoreBlkPtr sbp, BLAST_ResFreqPtr rfp));
BLAST_ScoreFreqPtr BlastScoreFreqNew PROTO((BLAST_Score score_min, BLAST_Score score_max));
BLAST_ScoreFreqPtr BlastScoreFreqDestruct PROTO((BLAST_ScoreFreqPtr sfp));
BLAST_MatrixPtr LIBCALL BLAST_MatrixDestruct PROTO((BLAST_MatrixPtr blast_matrix));
BLAST_MatrixPtr LIBCALL BLAST_MatrixFill PROTO((BLAST_ScoreBlkPtr sbp, Boolean positionBased));
BLAST_MatrixPtr LIBCALL BLAST_MatrixFetch PROTO((CharPtr matrix_name));
Int2 LIBCALL BlastGetStdAlphabet PROTO((Uint1 alphabet_code, Uint1Ptr residues, Int4 residues_size));
/*
Functions used to convert between Stephen's pseudo scores
and E or p-values.
*/
Int2 ConvertPtoPseudoS PROTO((Nlm_FloatHi p, Nlm_FloatHi n));
Int2 ConvertEtoPseudoS PROTO((Nlm_FloatHi E, Nlm_FloatHi searchsp));
Nlm_FloatHi ConvertPseudoStoE PROTO((Int2 s, Nlm_FloatHi n));
ScorePtr MakeBlastScore PROTO((ScorePtr PNTR old, CharPtr scoretype, Nlm_FloatHi prob, Int4 score));
/*
Obtains arrays of the allowed opening and extension penalties for gapped BLAST for
the given matrix. Also obtains arrays of Lambda, K, and H. The pref_flags field is
used for display purposes, with the defines: BLAST_MATRIX_NOMINAL, BLAST_MATRIX_PREFERRED, and
BLAST_MATRIX_BEST.
Any of these fields that
are not required should be set to NULL. The Int2 return value is the length of the
arrays.
*/
Int2 LIBCALL BlastKarlinGetMatrixValues PROTO((CharPtr matrix, Int4Ptr PNTR open, Int4Ptr PNTR extension, FloatHiPtr PNTR lambda, FloatHiPtr PNTR K, FloatHiPtr PNTR H, Int4Ptr PNTR pref_flags));
Int2 LIBCALL BlastKarlinGetMatrixValuesEx PROTO((CharPtr matrix, Int4Ptr PNTR open, Int4Ptr PNTR extension, Int4Ptr PNTR decline_align, FloatHiPtr PNTR lambda, FloatHiPtr PNTR K, FloatHiPtr PNTR H, Int4Ptr PNTR pref_flags));
Int2 LIBCALL BlastKarlinGetMatrixValuesEx2 PROTO((CharPtr matrix, Int4Ptr PNTR open, Int4Ptr PNTR extension, Int4Ptr PNTR decline_align, FloatHiPtr PNTR lambda, FloatHiPtr PNTR K, FloatHiPtr PNTR H, FloatHiPtr PNTR alpha, FloatHiPtr PNTR beta, Int4Ptr PNTR pref_flags));
void LIBCALL getAlphaBeta PROTO((CharPtr matrixName, Nlm_FloatHi *alpha,
Nlm_FloatHi *beta, Boolean gapped, Int4 gap_open, Int4 gap_extend));
Int2 LIBCALL BlastKarlinGetDefaultMatrixValues PROTO((CharPtr matrix, Int4Ptr open, Int4Ptr extension, FloatHiPtr lambda, FloatHiPtr K, FloatHiPtr H));
Int4Ptr PNTR LIBCALL BlastMatrixToTxMatrix PROTO((BLAST_MatrixPtr matrix));
Int4Ptr PNTR LIBCALL TxMatrixDestruct PROTO((Int4Ptr PNTR txmatrix));
Int2 BlastKarlinGetNuclAlphaBeta PROTO((Int4 reward, Int4 penalty, Int4 gap_open,
Int4 gap_extend, BLAST_KarlinBlkPtr kbp,
Boolean gapped_calculation,
double *alpha, double *beta));
Int2 BlastKarlinBlkNuclGappedCalc PROTO((BLAST_KarlinBlk* kbp, Int4 gap_open,
Int4 gap_extend, Int4 reward, Int4 penalty,
BLAST_KarlinBlk* kbp_ungap,
Boolean* round_down,
ValNodePtr* error_return));
Int4
BlastComputeLengthAdjustment(Nlm_FloatHi K,
Nlm_FloatHi logK,
Nlm_FloatHi alpha_d_lambda,
Nlm_FloatHi beta,
Int4 query_length,
Int8 db_length,
Int4 db_num_seqs,
Int4 * length_adjustment);
#ifdef __cplusplus
}
#endif
#endif /* !__BLASTKAR__ */
|