#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