summaryrefslogtreecommitdiffstats
path: root/src/model/blast_scores_data.h (plain)
blob: 8c4aaef54fc5718aa9eaa6f9f846cd5e83003afc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef BLAST_SCORES_DATA_H
#define BLAST_SCORES_DATA_H

#define BLAST_SCORES_DATA_FIELD_NUM 9

#define BLAST_SCORES_DATA_FIELD_NAMES { "Source GI", "Source Start", "Source End", "Target GI", "Target Start", "Target End", "Score", "Bit Score", "Evalue" }

typedef struct
{
  int source_gi;
  int source_start;
  int source_end;
  int target_gi;
  int target_start;
  int target_end;
  int score;
  double bit_score;
  double evalue;
} blast_scores_data;

#endif // BLAST_SCORES_DATA_H

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.