/usr/include/ncbi/blfmtutl.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 | /* ===========================================================================
*
* 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: blfmtutl.h
Author: Tom Madden
Contents: prototypes and defines for Blast formatting utilities
******************************************************************************/
/* $Revision: 1.6 $
* $Log: blfmtutl.h,v $
* Revision 1.6 2006/04/26 12:42:36 madden
* BlastSetUserErrorString and BlastDeleteUserErrorString moved from blastool.c to blfmtutl.c
*
* Revision 1.5 2005/12/29 19:55:04 madden
* Added functions to print tabular output
*
* Revision 1.4 2005/05/16 17:42:19 papadopo
* From Alejandro Schaffer: Print references for composition-based statistics
* and for compositional score matrix adjustment, if either method was used.
*
* Revision 1.3 2004/10/04 17:54:14 madden
* BlastPrintVersionInfo[Ex] now takes const char* as arg for program
*
* Revision 1.2 2004/06/30 13:38:18 madden
* Add prototypes for add_string_to_buffer and add_string_to_bufferEx
*
* Revision 1.1 2004/06/30 12:31:30 madden
* Structures and prototypes for blast formatting utilities
*
*
* */
#ifndef __BLFMTUTL__
#define __BLFMTUTL__
#include <ncbi.h>
#include <objcode.h>
#include <objseq.h>
#include <sequtil.h>
#include <readdb.h>
#include <ncbithr.h>
#include <txalign.h>
#include <ffprint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _txdbinfo {
struct _txdbinfo PNTR next;
Boolean is_protein;
CharPtr name;
CharPtr definition;
CharPtr date;
Int8 total_length;
Int4 number_seqs;
Boolean subset; /* Print the subset message. */
} TxDfDbInfo, *TxDfDbInfoPtr;
/*****************************************************************
*
* Used for pruing SeqALigns that are too big.
*
********************************************************************/
typedef struct _blast_prune_hits_from_sap {
SeqAlignPtr sap;
Int4 original_number, /* how may unique hits were there originally. */
number; /* How many hits on SeqALignPtr above. */
Boolean allocated; /* If FALSE, SeqAlignPtr above does NOT belong to this struc.*/
} BlastPruneSapStruct, PNTR BlastPruneSapStructPtr;
/*
Allocates memory for TxDfDbInfoPtr.
Link up new (returned) value to 'old', if non-NULL.
*/
TxDfDbInfoPtr LIBCALL TxDfDbInfoNew PROTO((TxDfDbInfoPtr old));
/*
Deallocates memory (including strings for name, definition, and date).
*/
TxDfDbInfoPtr LIBCALL TxDfDbInfoDestruct PROTO((TxDfDbInfoPtr dbinfo));
/*
Duplicate a SeqAlignPtr, keeping on the number of unique db
hits specified.
*/
BlastPruneSapStructPtr LIBCALL BlastPruneHitsFromSeqAlign PROTO((SeqAlignPtr sap, Int4 number, BlastPruneSapStructPtr prune));
/* Deallocates BlastPruneSapStruct and deallocates SeqAlignSet if "allocated" flag is set. */
BlastPruneSapStructPtr LIBCALL BlastPruneSapStructDestruct PROTO((BlastPruneSapStructPtr prune));
/*
Print a summary of the query.
*/
Boolean LIBCALL AcknowledgeBlastQuery PROTO((BioseqPtr bsp, Int4 line_length, FILE *outfp, Boolean believe_query, Boolean html));
/*
Print a report of the database used.
*/
Boolean LIBCALL PrintDbReport PROTO((TxDfDbInfoPtr dbinfo, Int4 line_length, FILE *outfp));
/*
print out some of the Karlin-Altschul parameters.
*/
Boolean LIBCALL PrintKAParameters PROTO((Nlm_FloatHi Lambda, Nlm_FloatHi K, Nlm_FloatHi H, Int4 line_length, FILE *outfp, Boolean gapped));
Boolean LIBCALL PrintKAParametersExtra PROTO((Nlm_FloatHi Lambda, Nlm_FloatHi K, Nlm_FloatHi H, Nlm_FloatHi C, Int4 line_length, FILE *outfp, Boolean gapped));
/*
Print a CharPtr (VisibleString), printing a new line every time
a tilde is encountered.
*/
Boolean LIBCALL PrintTildeSepLines PROTO((CharPtr buffer, Int4 line_length, FILE *outfp));
/*
Prints some header information.
*/
CharPtr LIBCALL BlastGetVersionNumber PROTO((void));
CharPtr LIBCALL BlastGetReference PROTO((Boolean html));
Boolean LIBCALL BlastPrintReference PROTO((Boolean html, Int4 line_length, FILE *outfp));
Boolean LIBCALL MegaBlastPrintReference PROTO((Boolean html, Int4 line_length, FILE *outfp));
CharPtr LIBCALL BlastGetPhiReference PROTO((Boolean html));
Boolean LIBCALL BlastPrintPhiReference PROTO((Boolean html, Int4 line_length, FILE *outfp));
Boolean LIBCALL CBStatisticsPrintReference PROTO((Boolean html, Int4 line_length, Boolean firstRound, Boolean moreRounds, FILE *outfp));
Boolean LIBCALL CAdjustmentPrintReference PROTO((Boolean html, Int4 line_length, FILE *outfp));
Boolean BlastPrintVersionInfo PROTO((const char* program, Boolean html, FILE *outfp));
Boolean BlastPrintVersionInfoEx PROTO((const char* program, Boolean html, CharPtr version, CharPtr date, FILE *outfp));
CharPtr LIBCALL BlastGetReleaseDate PROTO((void));
/*
adds the new string to the buffer, separating by a tilde.
Checks the size of the buffer for FormatBlastParameters and
allocates longer replacement if needed.
*/
Boolean LIBCALL add_string_to_bufferEx PROTO((CharPtr buffer, CharPtr *old, Int2Ptr old_length, Boolean add_tilde));
Boolean LIBCALL add_string_to_buffer PROTO((CharPtr buffer, CharPtr *old, Int2Ptr old_length));
void PrintTabularOutputHeader PROTO((CharPtr blast_database, BioseqPtr query_bsp,
SeqLocPtr query_slp, CharPtr blast_program,
Int4 iteration, Boolean believe_query,
FILE *outfp));
void BlastPrintTabulatedResults PROTO((SeqAlignPtr seqalign, BioseqPtr query_bsp, SeqLocPtr query_slp, Int4 num_alignments, CharPtr blast_program, Boolean is_ungapped, Boolean believe_query, Int4 q_shift, Int4 s_shift, FILE *fp, Boolean print_query_info));
void BlastPrintTabulatedResultsEx PROTO((SeqAlignPtr seqalign, BioseqPtr query_bsp, SeqLocPtr query_slp, Int4 num_alignments, CharPtr blast_program, Boolean is_ungapped, Boolean believe_query, Int4 q_shift, Int4 s_shift, FILE *fp, int *num_formatted, Boolean print_query_info));
void BlastPrintTabularResults(SeqAlignPtr seqalign, BioseqPtr query_bsp,
SeqLocPtr query_slp, Int4 num_alignments, CharPtr blast_program,
Boolean is_ungapped, Boolean is_ooframe, Boolean believe_query,
Int4 q_shift, Int4 s_shift, FILE *fp, int *num_formatted,
Boolean print_query_info);
/* Functions used for printing error messages. */
Uint1 BlastSetUserErrorString(CharPtr string, SeqIdPtr sip, Boolean use_id);
void BlastDeleteUserErrorString(Uint1 err_id);
#ifdef __cplusplus
}
#endif
#endif /* !__BLFMTUTL__ */
|