This file is indexed.

/usr/include/ncbi/ingenext.h is in libvibrant6-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
/* ingenext.h

* ===========================================================================
*
*                            PUBLIC DOMAIN NOTICE
*            National Center for Biotechnology Information (NCBI)
*
*  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 do not place any restriction on its use or reproduction.
*  We would, however, appreciate having the NCBI and the author cited in
*  any work or product based on this material
*
*  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.
*
* ===========================================================================
*
* File Name:  ingenext.h
*
* Author:  Fasika Aklilu
*
* Version Creation Date:   8/9/01
*
* $Revision: 6.5 $
*
* File Description: 
*
* Modifications:  
* --------------------------------------------------------------------------
* Date     Name        Description of modification
* -------  ----------  -----------------------------------------------------
*
*
* ==========================================================================
*/

#ifndef _INGENEXT_
#define _INGENEXT_

#ifdef __cplusplus
extern "C" {
#endif

#include <ingenwin.h>
#include <dotviewer.h>
#include <spidey.h>
#include <qblastapi.h>
#include <alignmgr2.h>

#define Ing_NUM_DBS 20
#define MAX_BLASTN_LEN 8000
#define MAX_BLASTP_LEN 4000
#define MAX_BLASTX_LEN 3000
#define MAX_TBLASTN_LEN 2000
#define OVERLAP_SPACE 1000
#define POST_PROCESS_BANDALGN  1
#define POST_PROCESS_NONE      2



/******************************************************
 *
 *  typedefs
 *
******************************************************/

typedef struct dotinfo{
  SeqAlignPtr sap;
  SeqIdPtr    sip1;
  SeqIdPtr    sip2;
  TexT from1;
  TexT to1;
  TexT from2;
  TexT to2;
  TexT wordsize;
  TexT numhits;
  TexT strand;
} DotInfo;

typedef struct ig_blastdlgdata {
  ValNode *pvnSips;               /* list of sips in structure */
  LisT bsp_list;          /* listbox of bsps */
  PopuP db_list;          /* listbox of databases */
  ButtoN bGap;   /* should the alignment be gapped? */
  TexT tMax;
  TexT tExpect;
  TexT wordsize;
  ButtoN     maskrep;
  ButtoN     masksimple;
  ButtoN     megablast;
  SeqAlign *salp;  /* resulting seqalign */
}Ing_BlastDlgData;



typedef struct ig_blast2info
{
  BioseqPtr  bsp1;
  BioseqPtr  bsp2;
  CharPtr    path;
  CharPtr    GI_list;
  GrouP      localorglobal;
  GrouP      progname;
  GrouP      gapped;
  TexT       from;
  TexT       to;
  TexT       eval;
  TexT       wordsize;
  ButtoN     maskrep;
  ButtoN     masksimple;
  ButtoN     megablast;
  IngGenomeViewerPtr igvp;
} IngBlast2Info, PNTR IngBlast2InfoPtr;


typedef struct ig_spideyform
{
  BioseqPtr  bsp1;
  BioseqPtr  bsp2;
  CharPtr    path;
  CharPtr    GI_list;
  ButtoN     inters;
  PopuP      org;
  TexT       idcutoff;
  TexT       lencutoff;
  TexT       firstpasseval;
  TexT       secondpasseval;
  TexT       thirdpasseval;
  TexT       numreturns;
  TexT       from;
  TexT       to;
} IngSpideyForm , PNTR IngSpideyFormPtr;


extern  Uint2 primID_cntr;

static CharPtr ig_nucdbs [] = {
  "nr", "est", "est_human", "est_mouse", "est_others", "gss","htgs", "pat", "yeast",  "mito", "vector", "ecoli", "pdb", "drosoph", "month", "sts", "kabat",
  "epd",  "alu", NULL
};

static CharPtr ig_nucdbsnames [] = {
  "nr", "est", "est_human", "est_mouse", "est_others", "gss (single-pass genomic)", "htgs", "patent", "yeast", "mito", "vector", "ecoli", "pdb (3-D prot)", "Drosophila", "month", "sts",  "kabat (immunologic)", "epd (eukaryotic promoter)",   "Alu repeats", NULL
};


/******************************************************
 *
 *  Function Declarations
 *
******************************************************/


#ifdef __cplusplus
}
#endif

#endif /* ndef _GENVIEW_ */