/usr/include/ncbi/posit.h is in libncbi6-dev 6.1.20110713-3ubuntu2.
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 | /* $Id: posit.h,v 6.32 2008/03/31 13:36:10 madden 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.
*
* ===========================================================================
*/
/*****************************************************************************
File name: posit.h
Author: Alejandro Schaffer
Contents: header file for position-based BLAST.
$Revision: 6.32 $
*****************************************************************************/
/*
* $Log: posit.h,v $
* Revision 6.32 2008/03/31 13:36:10 madden
* Implemented a new method to compute effective observations.
* Implemented a new entropy-based method to compute column-specific pseudocounts.
*
* Revision 6.31 2007/01/22 19:20:55 camacho
* From Alejandro Schaffer:
* In posPurgeMatches, when in command-line mode, added a warning for the
* situation in which only the query is used to construct the PSSM.
*
* Revision 6.30 2006/09/18 17:49:06 papadopo
* increase size of PROTEIN_ALPHABET
*
* Revision 6.29 2004/10/12 15:06:57 papadopo
* 1. Modify residue frequency IO to comply with new scoremat spec
* 2. Remove check that residue frequencies read from scoremat are <= 1.0
* 3. Pass gap open and gap extend penalties into BposComputation and
* CposComputation, so that scoremats can contain them
*
* Revision 6.28 2004/08/23 17:09:22 papadopo
* From Michael Gertz: move static arrays out of header and into the one file that needs them
*
* Revision 6.27 2004/07/19 17:13:13 papadopo
* add capability to perform input and output of residue frequencies in scoremat form; also call PSIMatrixFrequencyRatiosNew before restarting from checkpoint
*
* Revision 6.26 2004/06/23 14:53:29 camacho
* Copy renamed versions of SFreqRatios and its *{New,Free} functions to avoid
* dependency ncbitool -> blast
*
* Revision 6.25 2004/06/22 14:16:46 camacho
* Changed signature of posFreqsToMatrix, added use of SFreqRatios structure from
* algo/blast/core/ to obtain underlying matrices' frequency ratios.
* This change results in using the frequency ratios to provide the scores
* for the PSSM in columns where all residue frequencies are 0. Previously the
* standard scoring matrix were used.
*
* Revision 6.24 2004/05/14 12:13:09 camacho
* Made posDemographics non-static for testing purposes.
*
* Revision 6.23 2001/08/29 19:05:03 madden
* added parameter posComputationCalled in outputPosComputation
*
* Revision 6.22 2001/04/03 19:38:24 madden
* Changed IDENTITY_PERCENTAGE to 0.94, Added to output of -Q option in outputPosMatrix
*
* Revision 6.21 2001/01/03 01:49:38 bauer
* Changed from static to "LIBCALL":
* posAllocateMemory
* posPurgeMatches
* posCancel
* posComputeExtents
* posComputeSequenceWeights
* posCheckWeights
* posComputePseudoFreqs
* posScaling
*
* Revision 6.20 2000/12/29 00:39:00 hurwitz
* added ints for freeing of posSearchItems
*
* Revision 6.19 2000/11/13 14:00:39 madden
* Added frequency ratios for * in all standard matrices
*
* Revision 6.18 2000/11/09 14:27:52 madden
* psi-blast fixes for star character
*
* Revision 6.17 2000/10/10 21:46:31 shavirin
* Added support for BLOSUM50, BLOSUM90, PAM250 with -t T
* Changed frequency ratio for X from 0.707 to 0.750 to ensure that
* score is always -1.
*
* Revision 6.16 2000/07/31 16:41:02 shavirin
* Reduced POSIT_SCALE_FACTOR from 1000 to 200 to avoid overflow
* with BLOSUM80; moved declaration os POSIT_SCALE_FACTOR to posit.h
*
* Revision 6.15 2000/07/25 18:12:04 shavirin
* WARNING: This is no-turning-back changed related to S&W Blast from
* Alejandro Schaffer
*
* Revision 6.14 2000/07/07 21:20:08 vakatov
* Get all "#include" out of the 'extern "C" { }' scope!
*
* Revision 6.13 2000/04/29 21:49:05 kans
* removed bad characters on Mac
*
* Revision 6.12 1999/11/15 21:47:00 shavirin
* Added parameter Boolean use_best_align into compactSearchItems structure
*
* Revision 6.11 1999/10/21 16:15:04 shavirin
* Removed unused array and all references to array threshSequences
*
* Revision 6.10 1999/09/03 17:23:48 madden
* Eliminated use of posMaxThresh field in posSearchItems
*
* Revision 6.9 1999/08/04 13:27:11 madden
* Added -B option
*
* Revision 6.8 1999/03/21 19:40:30 madden
* Added 3rd argument matrixfp to definition of outputPosMatrix
*
* Revision 6.7 1999/03/17 16:49:11 madden
* Removed comment within comment
*
* Revision 6.6 1999/01/26 18:27:58 madden
* Made functions public for AS
*
* Revision 6.5 1998/09/28 12:31:32 madden
* Used BlastConstructErrorMessage
*
* Revision 6.3 1998/04/24 19:29:50 madden
* Added ideal values to compactSearch
*
* Revision 6.2 1998/03/25 22:36:19 egorov
* Change type of posRepeatSequences
*
* Revision 6.1 1997/12/23 21:07:08 madden
* Changes for checkpointing
*
* Revision 6.0 1997/08/25 18:53:52 madden
* Revision changed to 6.0
*
* Revision 1.11 1997/08/11 15:45:28 madden
* eliminated obsolete fields
*
* Revision 1.10 1997/06/25 14:04:51 madden
* prototype change
*
* Revision 1.9 1997/05/29 20:36:23 madden
* Add Boolean *posUseSequences
*
* Revision 1.8 1997/05/22 21:25:30 madden
* fixed memory leaks
*
* Revision 1.7 1997/05/16 20:10:10 madden
* Added BLAST_Score **posPrivateMatrix
*
* Revision 1.6 1997/05/01 15:53:27 madden
* Addition of extra KarlinBlk's for psi-blast
*
* Revision 1.5 1997/04/22 16:36:49 madden
* Changes for use of psi-blast with www.
*
* Revision 1.4 1997/04/10 19:25:53 madden
* COMMAND_LINE replaced by ALL_ROUNDS, Char to Int1.
*
* Revision 1.3 1997/04/09 20:01:53 madden
* Functions CposComputation and WposComputation replace posComputations.
*
* Revision 1.2 1997/04/04 20:44:55 madden
* Changed posComputation to return Int4Ptr *.
*
* Revision 1.1 1997/02/13 15:22:13 madden
* Initial revision
*
*/
#ifndef __POSIT__
#define __POSIT__
#include <ncbi.h>
#include <math.h>
#include <blast.h>
#include <blastdef.h>
#ifdef __cplusplus
extern "C" {
#endif
#define charsPerLine 20 /*Number of characters of a sequence to print
per line for score matrix*/
#define ALIGN_LINE_LENGTH 8192
#define ALIGN_CHARS_PER_LINE 70
#define UNUSED (-1)
#define Xchar 21 /*character for low-complexity columns*/
#define StarChar 25 /*character for stop codons*/
#define ALL_ROUNDS 1 /*do all rounds without interruption*/
/* Front-ends to retrieve numbers. */
#define getCkptNlm_FloatHi(d, ckptFile) (getCkptNumber(&(d),sizeof(Nlm_FloatHi),ckptFile))
#define getCkptInt4(i, ckptFile) (getCkptNumber(&(i),sizeof(Int4),ckptFile))
#define getCkptChar(c, ckptFile) (getCkptNumber(&(c),sizeof(Char),ckptFile))
/****************************************************************************/
/* PLEASE NOTE: The following structure and the PSIMatrixFrequencyRatios*
* functions have been copied and renamed from
* algo/blast/core/matrix_freq_ratios.[hc] to eliminate a dependency from the
* ncbitool library to the blast library.
*/
/** Stores the frequency ratios along with their bit scale factor */
typedef struct FreqRatios {
/** The actual frequency ratios */
double** data;
/** Used to multiply the values in the above matrix to obtain scores in bit
* units */
int bit_scale_factor;
} FreqRatios;
/** Retrive the matrix's frequency ratios.
* @param matrix_name Available options include:
* BLOSUM62
* BLOSUM62_20
* BLOSUM62_20A
* BLOSUM62_20B
* BLOSUM45
* BLOSUM80
* BLOSUM50
* BLOSUM90
* PAM30
* PAM70
* PAM250
* @return NULL on error
*/
FreqRatios*
PSIMatrixFrequencyRatiosNew(const char* matrix_name);
/** Deallocate the frequency ratios structure */
FreqRatios*
PSIMatrixFrequencyRatiosFree(FreqRatios* freq_ratios);
/* END of copied code */
/****************************************************************************/
typedef struct posDesc {
Int1 letter; /*what is the preferred letter here*/
Boolean used; /*is there any letter here */
Nlm_FloatHi e_value; /*score of highest hsp including this position */
Int4 leftExtent; /*How far left do same sequences match?*/
Int4 rightExtent; /*How far right do same sequences match?*/
} posDesc;
typedef struct posSearchItems {
Int4 *posCount; /*count of how many sequences match at
each query position, default value is 1 to
include query*/
Int4 **posC; /*position-sepcific occurrence counts*/
Int4 **posDistinctDistrib; /*For position i, how many positions in its block
have j distinct letters*/
Int4 *posNumParticipating; /*number of sequences at each position*/
Nlm_FloatHi **posMatchWeights;
BLAST_Score **posMatrix;
BLAST_Score **posPrivateMatrix;
Nlm_FloatHi **posFreqs;
Nlm_FloatHi *posGaplessColumnWeights;
Int4 posNumSequences;
Int4 posResultsCounter;
Int4 *posResultSequences;
Nlm_FloatHi *posA;
Nlm_FloatHi *posRowSigma;
Int4 posDescMatrixLength; /* Length of posDescMatrix, for deallocation. */
posDesc **posDescMatrix;
posDesc *posExtents;
Nlm_FloatHi *posSigma;
Int4 *posIntervalSizes; /*interval size used for this column*/
Int2Ptr posRepeatSequences;
Boolean *posUseSequences;
Nlm_FloatHi *posInformation;
Int4 QuerySize;
Int4 NumSequences;
FreqRatios* stdFreqRatios; /* underlying scoring matrix's frequency ratios */
} posSearchItems;
typedef struct compactSearchItems {
Uint1Ptr query;
Int4 qlength;
Boolean gapped_calculation;
Int4 alphabetSize;
Int4 pseudoCountConst;
Nlm_FloatHi ethresh;
Nlm_FloatHi lambda;
Nlm_FloatHi *standardProb;
Int4Ptr *matrix;
Char standardMatrixName[50];
BLAST_KarlinBlkPtr *kbp_std, *kbp_psi, *kbp_gap_std, *kbp_gap_psi;
Nlm_FloatHi lambda_ideal, K_ideal;
Boolean use_best_align;
Int4 currentPass;
Int4 maximumPass;
Nlm_FloatHi standardProbWeight; /*weight of standard probs for
column-specific pseudocounts*/
Nlm_FloatHi HmethodNumerator;
Nlm_FloatHi HmethodDenominator;
Char queryFileName[100];
} compactSearchItems;
void LIBCALL outputPosMatrix PROTO((posSearchItems *posSearch, compactSearchItems * compactSearch, FILE *matrixfp, Boolean posComputationCalled));
Int4Ptr * LIBCALL CposComputation PROTO((posSearchItems *posSearch, BlastSearchBlkPtr search, compactSearchItems * compactSearch, SeqAlignPtr listOfSeqAligns, Char *ckptFileName, Boolean patternSearchStart, Int4 scorematOutput, Bioseq *query_bsp, Int4 gap_open, Int4 gap_extend, ValNodePtr * error_return,
Nlm_FloatHi weightExponent));
Int4Ptr * LIBCALL WposComputation PROTO((compactSearchItems *compactSearch, SeqAlignPtr listOfSeqAligns, Nlm_FloatHi **posFreqs));
Int4Ptr * LIBCALL BposComputation PROTO((posSearchItems *posSearch, BlastSearchBlkPtr search, compactSearchItems * compactSearch, Char *ckptFileName, Char *takeCkptFileName, Int4 scorematOutput, Bioseq *query_bsp, Int4 gap_open, Int4 gap_extend, ValNodePtr * error_return));
void LIBCALL posPrintInformation PROTO((posSearchItems *posSearch, BlastSearchBlkPtr search, Int4 passNum));
void LIBCALL posInitializeInformation PROTO((posSearchItems *posSearch, BlastSearchBlkPtr search));
void LIBCALL posFreeInformation PROTO((posSearchItems *posSearch));
void LIBCALL posConvergenceTest PROTO((posSearchItems *posSearch, BlastSearchBlkPtr search, SeqAlignPtr listOfSeqAligns, Int4 thisPassNum));
void LIBCALL posCancel(posSearchItems *posSearch, compactSearchItems * compactSearch, Int4 first, Int4 second, Int4 matchStart, Int4 intervalLength);
void LIBCALL posPurgeMatches(posSearchItems *posSearch, compactSearchItems * compactSearch, ValNodePtr * error_return);
void LIBCALL posDemographics(posSearchItems *posSearch,
compactSearchItems * compactSearch,
SeqAlignPtr listOfSeqAligns);
/*Cleanup position-specific data structures after one pass*/
void LIBCALL posCleanup PROTO((posSearchItems *posSearch, compactSearchItems * compactSearch));
void LIBCALL copySearchItems(compactSearchItems * compactSearch, BlastSearchBlkPtr search, Char * matrixName);
compactSearchItems * LIBCALL compactSearchNew(compactSearchItems * compactSearch);
void LIBCALL compactSearchDestruct(compactSearchItems * compactSearch);
Boolean LIBCALL posTakeCheckpoint(posSearchItems * posSearch, compactSearchItems * compactSearch, CharPtr fileName, ValNodePtr * error_return);
Boolean LIBCALL posTakeScoremat(posSearchItems * posSearch, compactSearchItems * compactSearch, CharPtr fileName, Int4 scorematOutput, Bioseq *query_bsp, Int4 gap_open, Int4 gap_extend, ValNodePtr * error_return);
Boolean LIBCALL posReadCheckpoint(posSearchItems * posSearch, compactSearchItems * compactSearch, CharPtr fileName, Int4 ScorematInput, ValNodePtr * error_return);
void LIBCALL posAllocateMemory(posSearchItems * posSearch, Int4 alphabetSize, Int4 querySize, Int4 numSequences);
void LIBCALL posCheckpointFreeMemory(posSearchItems *posSearch, Int4 querySize);
void LIBCALL posComputeExtents(posSearchItems *posSearch, compactSearchItems * compactSearch);
void LIBCALL posComputeSequenceWeights(posSearchItems *posSearch, compactSearchItems * compactSearch, Nlm_FloatHi weightExponent);
void LIBCALL posCheckWeights(posSearchItems *posSearch, compactSearchItems * compactSearch);
void LIBCALL posFreqsToMatrix(posSearchItems *posSearch, compactSearchItems *compactSearch);
Uint1 LIBCALL ResToInt(Char input);
void LIBCALL getCkptFreqMatrix (Nlm_FloatHi ** theMatrix, Int4 length, Int4 width, FILE * ckptFile);
void LIBCALL getCkptNumber(void * numberPtr, Int4 numberSize, FILE * ckptFile );
void LIBCALL copyPosFreqs(Nlm_FloatHi **posFreqsFrom, Nlm_FloatHi **posFreqsTo, Int4 qlength, Int4 alphabetSize);
Nlm_FloatHi ** LIBCALL allocatePosFreqs(Int4 length, Int4 alphabetSize);
Nlm_FloatHi ** LIBCALL posComputePseudoFreqs(posSearchItems *posSearch, compactSearchItems * compactSearch, Boolean Cpos);
void LIBCALL posScaling(posSearchItems *posSearch, compactSearchItems * compactSearch);
#define PROTEIN_ALPHABET 28
#define POSIT_SCALE_FACTOR 200
#define NO_SCOREMAT_IO 0
#define ASCII_SCOREMAT 1
#define BINARY_SCOREMAT 2
#ifdef __cplusplus
}
#endif
#endif /* __POSIT__ */
|