/usr/include/ncbi/asn2graphicp.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 | /* asn2graphicp.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: asn2graphicp.h
*
* Author: Eric Northup
*
* Version Creation Date: 11/8/01
*
* $Revision: 6.40 $
*
* File Description:
*
* Modifications:
* --------------------------------------------------------------------------
*
* ==========================================================================
*/
#ifndef _ASN2GRAPHICP_
#define _ASN2GRAPHICP_
#include <asn2graphic.h>
#include <objfdef.h>
#undef NLM_EXTERN
#ifdef NLM_IMPORT
#define NLM_EXTERN NLM_IMPORT
#else
#define NLM_EXTERN extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define APPEARANCEITEM_Segment (FEATDEF_MAX + 1)
#define APPEARANCEITEM_Alignment (FEATDEF_MAX + 2)
#define APPEARANCEITEM_Graph (FEATDEF_MAX + 3)
#define APPEARANCEITEM_MAX (FEATDEF_MAX + 4)
typedef enum {
Layout_Inherit = 0, /* inherit layout from higher-level entity */
Layout_Diagonal,
/* Layout_DiagonalSawtooth, */
Layout_FeatTypePerLine,
Layout_FeatTypePerLineGroup,
/* Layout_AllInOneLine, */
Layout_PackUpward,
Layout_GroupCorrespondingFeats,
Layout_GroupCorrespondingFeatsRepeat
} LayoutAlgorithm;
typedef enum {
Do_Not_Render = 0,
Render_Line,
Render_CappedLine, /* |---------| */
Render_Box,
Render_OutlineBox
} RenderAlgorithm;
typedef enum {
LabelUnset = 0,
LabelNone,
LabelAboveClip, /* above, but not wider than the feature*/
LabelAboveCull, /* above, but only displayed iff wider than the feature */
LabelInside,
LabelAbove,
LabelBelow,
LabelLeft,
LabelRight
} LabelLocEnum;
typedef enum {
NoGap = 0,
LineGap,
AngleGap
} GapEnum;
typedef struct appearanceItem {
Uint1 LabelColor [3];
Uint1 Color [3];
RenderAlgorithm RenderChoice;
Int1 VibLinestyle; /* these are as in AddAttribute */
Uint1 Height;
Int1 VibShading;
Boolean ShowArrow;
GapEnum GapChoice;
Boolean AddDescToLabel;
Boolean AddTypeToLabel;
FonT LabelFont;
LabelLocEnum LabelLoc;
Uint1 format; /* label format, currently only valid for alignments. */
} AppearanceItem, PNTR AppearanceItemPtr;
typedef enum {
NoLabel = 0,
LabelOnTop,
LabelOnBottom,
LabelOnSide
} GroupLabelLocation;
typedef struct bioseqAppearanceItem {
Boolean drawScale;
Uint1 bioseqColor [3];
Uint1 labelColor [3];
Uint1 scaleColor [3];
FonT labelFont;
FonT scaleFont;
GroupLabelLocation labelLoc;
Uint1 height;
Uint1 scaleHeight;
Uint1 format;
} BioseqAppearanceItem, PNTR BioseqAppearanceItemPtr;
typedef struct appearance {
ValNodePtr AppearanceItemList; /* data.ptrvalue == AppearanceItemPtr */
CharPtr name;
AppearanceItemPtr FeaturesAppearanceItem [APPEARANCEITEM_MAX];
BioseqAppearanceItemPtr bioseqAIP;
Boolean ShadeSmears; /* if FALSE, multi-feature smears (which can't be selected/edited like normal features) will be hollow instead of filled */
Uint2 MaxScaleForArrow;
Uint2 MinPixelsForArrow;
Uint1 GroupLabelColor [3];
FonT GroupLabelFont;
Uint1 GroupBoxColor [3];
Uint1 AnnotLabelColor [3];
FonT AnnotLabelFont;
Uint1 AnnotBoxColor [3];
} Appearance, PNTR AppearancePtr;
typedef enum {
InvalidFilter = 0,
BioseqFilter,
FeatureFilter,
GraphFilter,
AlignmentFilter
} FilterType;
typedef enum {
InvalidStrand = 0,
MinusStrand,
PlusStrand,
BothStrands
} StrandChoice;
typedef enum {
TristateUnset = 0,
TristateTrue,
TristateFalse
} Tristate;
#define BOOL_TO_TRISTATE(aBool) ((aBool) ? (TristateTrue) : (TristateFalse))
/* bool_from_SET_tristate means that the tristate has already been checked, and was not "TristateUnset" */
#define BOOL_FROM_SET_TRISTATE(aTri) ((aTri == TristateTrue) ? (TRUE) : (FALSE))
/* IncludeFeature[featdef_xxx] is either 0 (not included) or a number which indictes its order in this filter (1 = first, ..., APPEARANCEITEM_MAX = last) */
typedef struct filterItem {
FilterType Type;
CharPtr GroupLabel;
Uint1 GroupLabelColor [3];
Boolean GroupLabelColorSet;
FonT GroupLabelFont;
Boolean GroupLabelFontSet;
Uint1 GroupBoxColor [3];
Boolean GroupBoxColorSet;
Uint1 IncludeFeature [APPEARANCEITEM_MAX];
Uint2 IntraRowPaddingPixels; /* number of blank (pixel) rows after _each_ row in this group*/
Uint2 GroupPadding; /* number of blank (pixel) rows after this group */
LayoutAlgorithm LayoutChoice;
GroupLabelLocation GroupLabelLoc;
Boolean DrawGroupBox;
Boolean FillGroupBox;
StrandChoice MatchStrand;
Tristate AddDescToLabel;
Tristate AddTypeToLabel;
LabelLocEnum LabelLoc;
Tristate DrawScale;
} FilterItem, PNTR FilterItemPtr;
typedef struct filter {
ValNodePtr FilterItemList; /* data.ptrvalue == FilterItemPtr */
CharPtr name;
Uint2 MaxScaleWithLabels; /* turn off all labels if scale > MaxScaleWithLabels*/
Boolean GroupByAnnot; /* features or alignments in named annotations group separately? */
Boolean DrawAnnotBox; /* draw a box around such features. */
GroupLabelLocation AnnotLabelLoc;
Uint1 AnnotBoxColor[3];
Boolean AnnotBoxColorSet;
FonT AnnotLabelFont;
Boolean AnnotLabelFontSet;
Uint1 AnnotLabelColor [3];
Boolean AnnotLabelColorSet;
} Filter, PNTR FilterPtr;
typedef enum endPointType {
EndAbsolute = 0,
EndPartial,
EndClipped
} EndPointType;
typedef struct relevantFeatureItem {
Int4 Left, Right;
Uint1 featstrand;
EndPointType LeftEnd;
EndPointType RightEnd;
CharPtr ContentLabel;
Uint1 featdeftype;
Int4Ptr ivals;
Int2 numivals;
Uint2 entityID, itemType;
Uint4 itemID;
Uint1 circularSpanningOrigin; /* on a bioseq w/ Circular topology, this feature crosses the origin */
SeqAnnotPtr sap; /* was this feature found in a named SeqAnnot table? 0 if not, else a pointer to the SeqAnnot */
} RelevantFeatureItem, PNTR RelevantFeatureItemPtr;
typedef struct relevantFeatures {
Uint4 featureCount;
ValNodePtr featVNP; /* data.ptrvalue == RelevantFeatureItem [RELEVANT_FEATS_PER_CHUNK] */
Uint1 sapCount;
SeqAnnotPtr PNTR sapList;
} RelevantFeatures, PNTR RelevantFeaturesPtr;
typedef struct viewerConfigs {
Boolean ArraysPopulated;
Uint1 AppearanceCount;
AppearancePtr PNTR AppearanceArray;
CharPtr PNTR AppearanceNameArray;
Uint1 FilterCount;
FilterPtr PNTR FilterArray;
CharPtr PNTR FilterNameArray;
/* the linked-lists are only used while this structure is being built. */
ValNodePtr AppearanceList; /* data.ptrvalue == CharPtr */
ValNodePtr AppearanceNameList;
ValNodePtr FilterList;
ValNodePtr FilterNameList;
Uint2 DefaultMaxScaleWithLabels;
Uint2 DefaultMaxScaleForArrow;
Uint2 DefaultMinPixelsForArrow;
Uint2 DefaultGroupPadding;
Uint2 DefaultRowPadding;
Boolean DefaultShadeSmears;
} ViewerConfigs, PNTR ViewerConfigsPtr;
/* Public Functions */
NLM_EXTERN SegmenT CreateGraphicViewFromBsp (
BioseqPtr bsp,
SeqLocPtr location,
Int4 scale,
Int4Ptr ceiling,
SegmenT topLevel,
AppearancePtr AP,
FilterPtr FP,
LayoutAlgorithm overrideLayout,
GraphicViewExtrasPtr extras
);
/* If the same Bioseq will be rendered multiple times, it will be more efficient to use these functions */
NLM_EXTERN SegmenT CreateGraphicViewInternal (
BioseqPtr bsp,
Int4 from,
Int4 to,
Boolean allFeatures,
RelevantFeaturesPtr feats,
Int4 scale,
Int4Ptr ceiling,
SegmenT topLevel,
AppearancePtr AP,
FilterPtr FP,
LayoutAlgorithm overrideLayout,
GraphicViewExtrasPtr extras
);
NLM_EXTERN RelevantFeaturesPtr CollectFeatures (BioseqPtr bsp);
NLM_EXTERN RelevantFeaturesPtr FreeCollectedFeatures (RelevantFeaturesPtr RFP);
/* GetGraphicConfigParseResults() parses the configuration file the 1st time it is called, but returns a cached copy afterward */
NLM_EXTERN ViewerConfigsPtr GetGraphicConfigParseResults (void);
NLM_EXTERN FilterPtr FindFilterByName (CharPtr name, ViewerConfigsPtr VCP);
NLM_EXTERN AppearancePtr FindAppearanceByName (CharPtr name, ViewerConfigsPtr VCP);
NLM_EXTERN LayoutAlgorithm FindLayoutByName (CharPtr name);
/* Functions for Manipulating Filter and Appearance Structures */
NLM_EXTERN Uint2 ParseConfigFile (ViewerConfigsPtr VCP);
NLM_EXTERN FilterPtr CreateFilter (CharPtr name, ViewerConfigsPtr VCP);
NLM_EXTERN AppearancePtr CreateAppearance (CharPtr newname, ViewerConfigsPtr VCP);
NLM_EXTERN void AddFeatureToFilterItem (FilterItemPtr FIP, Uint1 newFeatdef, ViewerConfigsPtr VCP);
NLM_EXTERN void RemoveFeatureFromFilterItem (FilterItemPtr FIP, Uint1 newFeatdef, ViewerConfigsPtr VCP);
NLM_EXTERN FilterItemPtr CreateNewFilterItemInFilter (CharPtr name, FilterPtr parent, ViewerConfigsPtr VCP);
NLM_EXTERN FilterPtr DestroyFilter (FilterPtr FP, ViewerConfigsPtr VCP);
NLM_EXTERN AppearancePtr DestroyAppearance (AppearancePtr AP, ViewerConfigsPtr VCP);
NLM_EXTERN void AddAppearanceItemToAppearance (AppearanceItemPtr AIP, AppearancePtr AP, Uint1 newFeatdef, ViewerConfigsPtr VCP);
NLM_EXTERN Uint2 GetAppearanceCount (void);
NLM_EXTERN Uint2 GetFilterCount (void);
NLM_EXTERN Uint2 GetLayoutCount (void);
NLM_EXTERN Uint2 GetAlnScoreCount (void);
NLM_EXTERN Uint2 GetAlnScoreCutoffCount (void);
#ifdef __cplusplus
}
#endif
#undef NLM_EXTERN
#ifdef NLM_EXPORT
#define NLM_EXTERN NLM_EXPORT
#else
#define NLM_EXTERN
#endif
#endif /* _ASN2GRAPHICP_ */
|