~ubuntu-branches/ubuntu/edgy/ncbi-tools6/edgy

« back to all changes in this revision

Viewing changes to algo/blast/api/blast_tabular.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-19 23:28:07 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060719232807-et3cdmcjgmnyleyx
Tags: 6.1.20060507-3ubuntu1
Re-merge with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: blast_tabular.h,v 1.12 2005/04/06 23:27:53 dondosha Exp $
 
1
/* $Id: blast_tabular.h,v 1.13 2006/04/25 17:59:02 papadopo Exp $
2
2
* ===========================================================================
3
3
*
4
4
*                            PUBLIC DOMAIN NOTICE
86
86
   Boolean show_accession; /**< Show accessions instead of full ids in output,
87
87
                              if possible. This option has lower priority than
88
88
                              show_gi. */
 
89
   Boolean believe_query; /**< TRUE if query identifiers are parsed; if
 
90
                               FALSE, the first token in the query defline is
 
91
                               treated as an identifier */
89
92
   EBlastTabularFormatOptions format_options; /**< Tabular formatting options. */
90
93
} BlastTabularFormatData;
91
94
 
94
97
 * @param outfp Output stream to write to [in]
95
98
 * @param query_seqloc List of query sequence locations [in]
96
99
 * @param format_option What type of tabular output is requested? [in]
 
100
 * @param believe_query Should query identifiers be parsed? [in]
97
101
 * @return Allocated structure
98
102
 */
99
103
BlastTabularFormatData*
100
104
BlastTabularFormatDataNew(FILE* outfp, SeqLoc* query_seqloc,
101
 
                          EBlastTabularFormatOptions format_option);
 
105
                          EBlastTabularFormatOptions format_option,
 
106
                          Boolean believe_query);
102
107
 
103
108
 
104
109
/** Function initializing the BlastTabularFormatData data structure fields.