/usr/include/ncbi/tofasta.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 | /* tofasta.h
* ===========================================================================
*
* 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: tofasta.h
*
* Author: James Ostell
*
* Version Creation Date: 7/12/91
*
* $Revision: 6.43 $
*
* File Description: various sequence objects to fasta output
*
* Modifications:
* --------------------------------------------------------------------------
* Date Name Description of modification
* ------- ---------- -----------------------------------------------------
*
* ==========================================================================
*/
#ifndef _NCBI_Tofasta_
#define _NCBI_Tofasta_
#include <seqport.h>
#undef NLM_EXTERN
#ifdef NLM_IMPORT
#define NLM_EXTERN NLM_IMPORT
#else
#define NLM_EXTERN extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* keys returned by FastaWriteFunc */
#define FASTA_ID ((Int2)1) /* the SeqId string */
#define FASTA_DEFLINE ((Int2)2) /* the definition line */
#define FASTA_SEQLINE ((Int2)3) /* a line of sequence */
#define FASTA_EOS ((Int2)4) /* all the sequence has been printed */
#define FASTA_FORMATDB_AMB ((Int2)5) /* make conversion to standard form for nucleotides */
typedef Boolean (* FastaWriteFunc) PROTO ((BioseqPtr bsp, Int2 key,
CharPtr buf, Uint4 buflen, Pointer data));
typedef struct iteminfo { /* struct used for defline */
Uint2 entityID,
itemtype;
Uint4 itemID;
} ItemInfo, PNTR ItemInfoPtr;
typedef struct descrinfo { /* struct used for defline */
BioseqPtr bsp;
ValNodePtr vnp;
ItemInfoPtr iip;
Uint1 choice;
} DescrInfo, PNTR DescrInfoPtr;
typedef struct myfsa { /* struct used for fasta searches */
CharPtr buf; /* buffer for strings (suggest 255 minimum) */
Uint4 buflen, /* length of buf */
seqlen; /* length of sequence lines (must be buflen-1 or less) */
Pointer mydata; /* pointer to your own data */
FastaWriteFunc myfunc; /* callback to process parts of fasta file */
BioseqPtr bsp; /* Bioseq being processed */
Boolean bad_asn1; /* set if error in input object like mol not set */
CharPtr accession; /* used internally for GenPept def lines */
CharPtr organism; /* used internally for GenPept/PRF def lines */
Uint1 order; /* used to order def lines for BLAST */
Boolean do_virtual; /* if TRUE, instantiate virtual sequences */
Uint1 tech; /* for MolInfo.tech */
Boolean no_sequence; /* used to disable sequence printing */
Uint1 code; /* coding of sequence */
Boolean formatdb; /* TRUE, if is used in formatdb */
Boolean printid_general; /* show gi and gnl for SeqId */
SeqLocPtr seqloc; /* sub-sequence of interest */
} MyFsa, PNTR MyFsaPtr;
typedef struct tofasta {
Boolean is_na;
Boolean got_one;
MyFsaPtr mfp;
Uint1 group_segs;
Int2 last_indent,
parts, seg;
} FastaDat, PNTR FastaPtr;
NLM_EXTERN Boolean BioseqRawToFastaExtra PROTO((BioseqPtr bsp, FILE *fp, Int2 line_length));
NLM_EXTERN Boolean BioseqRawToFastaExtraEx PROTO((BioseqPtr bsp, FILE *fp, Int2 line_length, SeqLocPtr slp));
NLM_EXTERN Boolean BioseqRawToFasta PROTO((BioseqPtr bsp, FILE * fp, Boolean is_na));
NLM_EXTERN Boolean SeqEntryToFasta PROTO((SeqEntryPtr sep, FILE * fp, Boolean is_na));
NLM_EXTERN Boolean SeqEntryToFastaEx PROTO((SeqEntryPtr sep, FILE * fp, Boolean is_na, Boolean printid_general));
NLM_EXTERN Boolean BioseqToFasta PROTO((BioseqPtr bsp, FILE *fp, Boolean is_na));
NLM_EXTERN Boolean BioseqToFastaDump PROTO((BioseqPtr bsp, FILE *fp, Boolean is_na));
NLM_EXTERN void SeqEntryFasta PROTO ((SeqEntryPtr sep, Pointer data,
Int4 index, Int2 indent));
/*****************************************************************************
*
* SeqEntrysToFasta(sep, fp, is_na, group_segs)
*
* group_segs = 0 ... take only raw Bioseqs
* group_segs = 1 ... group segmented seqs into single entry.. no parts
* group_segs = 2 ... show only parts of segmented seqs
* group_segs = 3 ... like 1, but also instantiate virtual sequences
*
*****************************************************************************/
NLM_EXTERN Boolean SeqEntrysToFasta PROTO((SeqEntryPtr sep, FILE *fp, Boolean is_na, Uint1 group_segs));
NLM_EXTERN Boolean SeqEntrysToFastaX PROTO((SeqEntryPtr sep, MyFsaPtr mfp, Boolean is_na, Uint1 group_segs));
NLM_EXTERN Boolean SeqEntrysToDefline PROTO((SeqEntryPtr sep,
FILE *fp, Boolean is_na, Uint1 group_segs));
NLM_EXTERN Boolean BioseqRawToFastaX PROTO((BioseqPtr bsp, MyFsaPtr mfp, Boolean is_na));
NLM_EXTERN Boolean BioseqToFastaX PROTO((BioseqPtr bsp, MyFsaPtr mfp, Boolean is_na));
/*****************************************************************************
*
* BioseqFastaStream (bsp, fp, flags, linelen, blocklen, grouplen, do_defline)
* BioseqFastaMemStream (bsp, bs, flags, linelen, blocklen, grouplen, do_defline)
* SeqLocFastaStream (slp, fp, flags, linelen, blocklen, grouplen)
* SeqLitFastaStream (lit, fp, flags, linelen, blocklen, grouplen)
* CdRegionFastaStream (sfp, fp, flags, linelen, blocklen, grouplen)
* TranslationFastaStream (sfp, fp, flags, linelen, blocklen, grouplen)
* GeneFastaStream (sfp, fp, flags, linelen, blocklen, grouplen)
* SeqEntryFastaStream (sep, fp, flags, linelen, blocklen, grouplen,
* do_na, do_aa, master_style)
*
* Rapid FASTA generators using SeqPortStream
*
*****************************************************************************/
NLM_EXTERN Int4 BioseqFastaStream (
BioseqPtr bsp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline
);
NLM_EXTERN Int4 BioseqFastaStreamEx (
BioseqPtr bsp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
Boolean substitute_ids,
Boolean sorted_protein
);
NLM_EXTERN Int4 BioseqFastaMemStream (
BioseqPtr bsp,
ByteStorePtr bs,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline
);
NLM_EXTERN Int4 SeqLocFastaStream (
SeqLocPtr slp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen
);
NLM_EXTERN Int4 SeqLitFastaStream (
SeqLitPtr lit,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen
);
NLM_EXTERN Int4 CdRegionFastaStream (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix
);
NLM_EXTERN Int4 CdRegionFastaStreamEx (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix,
SeqLocPtr mappedloc,
BioseqPtr parentbsp
);
NLM_EXTERN Int4 TranslationFastaStream (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix
);
NLM_EXTERN Int4 TranslationFastaStreamEx (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix,
SeqLocPtr mappedloc,
BioseqPtr parentbsp
);
NLM_EXTERN Int4 GeneFastaStream (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix
);
NLM_EXTERN Int4 GeneFastaStreamEx (
SeqFeatPtr sfp,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_defline,
CharPtr idSuffix,
SeqLocPtr mappedloc,
BioseqPtr parentbsp
);
NLM_EXTERN Int4 SeqEntryFastaStream (
SeqEntryPtr sep,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_na,
Boolean do_aa,
Boolean master_style
);
NLM_EXTERN Int4 SeqEntryFastaStreamEx (
SeqEntryPtr sep,
FILE *fp,
StreamFlgType flags,
Int2 linelen,
Int2 blocklen,
Int2 grouplen,
Boolean do_na,
Boolean do_aa,
Boolean master_style,
Boolean substitute_ids,
Boolean sorted_prot
);
/*****************************************************************************
*
* FastaFileFunc(key, buf, data)
* standard "write to file" callback
*
*****************************************************************************/
NLM_EXTERN Boolean FastaFileFunc PROTO((BioseqPtr bsp, Int2 key,
CharPtr buf, Uint4 buflen, Pointer data));
/*****************************************************************************
*
* FastaDumpFileFunc(key, buf, data)
* standard "write to file" callback
*
* Used for BLAST (FASTA) databases. If the defline is
* longer than buflen, then check that an ID is not
* truncated in the middle.
*
*****************************************************************************/
NLM_EXTERN Boolean FastaDumpFileFunc PROTO((BioseqPtr bsp, Int2 key, CharPtr buf, Uint4 buflen, Pointer data));
/*****************************************************************************
*
* Reads a Fasta File into a SeqEntry structure
* Conventions:
* >name def
* agaggagagagagag
* agagagagagagagag
*
* "name" = string is considered SEQID_LOCAL until first white space
* "def" = after first white space, and before first newline will be "title"
* "agaga.." = sequence follows until EOF. can be upper or lower case IUPAC
*
*****************************************************************************/
NLM_EXTERN SeqEntryPtr FastaToSeqEntry PROTO((FILE *fp, Boolean is_na));
/*****************************************************************************
*
* Reads a Fasta Buffer into a SeqEntry structure
* Conventions:
* >name def
* agaggagagagagag
* agagagagagagagag
*
* "name" = string is considered SEQID_LOCAL until first white space
* "def" = after first white space, and before first newline will be "title"
* "agaga.." = sequence follows until EOF. can be upper or lower case IUPAC
*
*****************************************************************************/
NLM_EXTERN SeqEntryPtr FastaToSeqBuff PROTO((CharPtr buffer,
CharPtr PNTR last_char,Boolean is_na));
NLM_EXTERN SeqEntryPtr FastaToSeqBuffEx(CharPtr buffer, CharPtr PNTR last_char,
Boolean is_na, CharPtr PNTR errormsg,
Boolean parseSeqId);
NLM_EXTERN SeqEntryPtr FastaToSeqBuffForDb(CharPtr buffer, CharPtr PNTR last_char,
Boolean is_na, CharPtr PNTR errormsg,
Boolean parseSeqId, CharPtr prefix, Int2Ptr ctrptr,
SeqLocPtr PNTR mask_ptr);
NLM_EXTERN SeqEntryPtr FastaToSeqEntryEx (FILE *fp, Boolean is_na,
CharPtr PNTR errormsg,
Boolean parseSeqId);
NLM_EXTERN SeqEntryPtr FastaToSeqEntryForDb ( FILE *fp, Boolean is_na,
CharPtr PNTR errormsg,
Boolean parseSeqId,
CharPtr prefix, Int2Ptr ctrptr,
SeqLocPtr PNTR mask_ptr);
/********* DEFINES for input type *********/
#define FASTA_MEM_IO 1 /* type of reading from buffer in memory */
#define FASTA_FILE_IO 2 /* type of reading from file */
NLM_EXTERN SeqEntryPtr FastaToSeqEntryInternalEx ( VoidPtr input,
Int4 type, CharPtr PNTR next_char,
Boolean is_na, CharPtr PNTR errormsg,
Boolean parseSeqId, CharPtr special_symbol,
CharPtr prefix, Int2Ptr ctrptr,
SeqLocPtr PNTR mask_ptr);
/*****************************************************************************
*
* Boolean FastaReadSequence() - read sequence from file
*
*****************************************************************************/
Boolean FastaReadSequence
(
FILE *fd, /* input file pointer) */
Boolean is_na, /* type of sequence */
Int4Ptr seq_length, /* Returned length of sequence in residues */
ByteStorePtr PNTR bs_out, /* Returned pointer to sequence ByteStore */
CharPtr PNTR errormsg /* error message for debugging */
);
/*****************************************************************************
*
* Boolean FastaReadSequenceMem() - read sequence from buffer
*
*****************************************************************************/
Boolean FastaReadSequenceMem
(
CharPtr buffer, /* input buffer with sequence */
CharPtr PNTR next_char, /* returned pointer to next FASTA sequence */
Boolean is_na, /* type of sequence */
Int4Ptr seq_length, /* Returned length of sequence in residues */
ByteStorePtr PNTR bs_out, /* Returned pointer to sequence ByteStore */
CharPtr PNTR errormsg /* error message for debugging */
);
/*****************************************************************************
*
* This routines get parts needed to make FASTA format from ASN.1
*
*****************************************************************************/
/*****************************************************************************
*
* FastaId(bsp, buf, buflen)
* Makes the string for the id part of fasta format.
* buf should be at least 40 bytes
*
*****************************************************************************/
NLM_EXTERN Boolean FastaId PROTO((BioseqPtr bsp, CharPtr buf, Uint4 buflen));
/*****************************************************************************
*
* FastaDefLine(bsp, buf, buflen, accession, organism)
* Finds or makes a FASTA format defline (just locates the string)
* buf should be very long if possible
* function truncates if buf not long enough
* a few deflines are longer than 255
* if (accession != NULL) prefixes defline with (accession)
* used for translated GenBank records
* if (organism != NULL) adds [organism] to end
* if (tech == MI_TECH_phase1 or phase2, adds order comment to defline)
*
*****************************************************************************/
NLM_EXTERN Boolean FastaDefLine PROTO((BioseqPtr bsp, CharPtr buf, Uint4 buflen, CharPtr accession, CharPtr organism, Uint1 tech));
NLM_EXTERN Boolean CreateDefLine PROTO((ItemInfoPtr dip, BioseqPtr bsp, CharPtr buf, Uint4 buflen,
Uint1 tech, CharPtr accession, CharPtr organism));
NLM_EXTERN Boolean CreateDefLineEx (ItemInfoPtr iip, BioseqPtr bsp, CharPtr buf, Uint4 buflen, Uint1 tech,
CharPtr accession, CharPtr organism, Boolean ignoreTitle);
NLM_EXTERN Boolean CreateDefLineExEx (ItemInfoPtr iip, BioseqPtr bsp, CharPtr buf, Uint4 buflen, Uint1 tech,
CharPtr accession, CharPtr organism, Boolean ignoreTitle, Boolean extProtTitle);
/*****************************************************************************
*
* NewCreateDefLine and NewCreateDefLineBuf replace the CreateDefLine family
*
*****************************************************************************/
NLM_EXTERN CharPtr NewCreateDefLine (
ItemInfoPtr iip,
BioseqPtr bsp,
Boolean ignoreTitle,
Boolean extProtTitle
);
NLM_EXTERN Boolean NewCreateDefLineBuf (
ItemInfoPtr iip,
BioseqPtr bsp,
CharPtr buf,
Uint4 buflen,
Boolean ignoreTitle,
Boolean extProtTitle
);
/*****************************************************************************
*
* FastaSeqPort(bsp, is_na, do_virtual)
* opens a SeqPort for a fasta output of bsp
*
*****************************************************************************/
NLM_EXTERN SeqPortPtr FastaSeqPort PROTO((BioseqPtr bsp, Boolean is_na,
Boolean do_virtual, Uint1 code));
NLM_EXTERN SeqPortPtr FastaSeqPortEx PROTO((BioseqPtr bsp, Boolean is_na,
Boolean do_virtual, Uint1 code, SeqLocPtr slp));
/*****************************************************************************
*
* FastaSeqLine(spp, buf, linelen)
* an open seqport is passed in.
* fills buf with linelen bases
* assumes buf[linelen] = '\0'
* returns FALSE when no more residues to print
* here for backward compatibility. Is the same as calling
* FastaSeqLineEx() with do_virtual = FALSE;
*
*****************************************************************************/
NLM_EXTERN Boolean FastaSeqLine PROTO((SeqPortPtr spp, CharPtr buf, Int2 linelen, Boolean is_na));
/****************************************************************************
*
* FastaSeqLineEx(spp, buf, linelen, is_na, do_virtual)
*
* adds a parameter to indicate if virtual sequences should be shown
* this is necessary in order to avoid showing SEQPORT_VIRT return
* (gap of 0 length) as '-', when do_virtual is TRUE.
*
*****************************************************************************/
NLM_EXTERN Boolean FastaSeqLineEx(SeqPortPtr spp, CharPtr buf, Int2 linelen, Boolean is_na, Boolean
do_virtual);
Int4 GetOrderBySeqId(Int4 choice, Boolean is_prot);
/*****************************************************************************
*
* NC_Cleanup (entityID, ptr) and ClearGenBankKeywords (entityID, ptr)
* internal functions for genome RefSeq processing
*
*****************************************************************************/
NLM_EXTERN void NC_Cleanup (Uint2 entityID, Pointer ptr);
NLM_EXTERN void ClearGenBankKeywords (Uint2 entityID, Pointer ptr);
/*****************************************************************************
*
* InstantiateNCTitle (entityID, ptr) and InstantiateNMTitles (entityID, ptr)
* allows NC and NM titles to be kept as Seq_descr_title rather than always
* being generated on the fly
*
*****************************************************************************/
NLM_EXTERN void InstantiateNCTitle (Uint2 entityID, Pointer ptr);
NLM_EXTERN void InstantiateNMTitles (Uint2 entityID, Pointer ptr);
/*****************************************************************************
*
* InstantiateProteinTitles (entityID, ptr) and ClearProteinTitles (entityID, ptr)
* allows proteins titles to be kept as Seq_descr_title rather than always
* being generated on the fly
*
*****************************************************************************/
NLM_EXTERN void InstantiateProteinTitles (Uint2 entityID, Pointer ptr);
NLM_EXTERN void UpdateProteinTitle (BioseqPtr bsp);
NLM_EXTERN void ClearProteinTitlesInNucProts (Uint2 entityID, Pointer ptr);
NLM_EXTERN CharPtr MakeCompleteChromTitle (BioseqPtr bsp, Uint1 biomol, Uint1 completeness);
#ifdef __cplusplus
}
#endif
#undef NLM_EXTERN
#ifdef NLM_EXPORT
#define NLM_EXTERN NLM_EXPORT
#else
#define NLM_EXTERN
#endif
#endif
|