From 276817db439a3440a69425052e852cbefeb94417 Mon Sep 17 00:00:00 2001 From: Don Pellegrino Date: Sat, 23 Jan 2010 23:01:44 +0000 Subject: Modified to test loading BLAST scores. --- diff --git a/src/aggregator.c b/src/aggregator.c index 200de7d..3bb3572 100644 --- a/src/aggregator.c +++ b/src/aggregator.c @@ -4,10 +4,12 @@ */ #include "error/check_h5_error.h" +#include "load/load_blast_scores.h" #include "load/load_influenza_aa_dat.h" #include "load/load_influenza_faa.h" #include +#define BLASTFILE "run20090807.del" #define H5FILE "influenza.h5" #define INFLUENZA_AA_DAT "/u/ac/dpellegr/Documents/exp004/genomes/INFLUENZA/influenza_aa.dat" #define INFLUENZA_FAA "/u/ac/dpellegr/Documents/exp004/genomes/INFLUENZA/influenza.faa" @@ -38,15 +40,26 @@ main () /* * Load the supplementary protein data file. */ + /* printf ("Loading \"influenza_aa.dat\" with contents of %s.\n", INFLUENZA_AA_DAT); load_influenza_aa_dat (file_id, INFLUENZA_AA_DAT); + */ /* * Load the FASTA protein sequence data file. */ + /* printf ("Loading \"influenza.faa\" with contents of %s.\n", INFLUENZA_FAA); load_influenza_faa (file_id, INFLUENZA_FAA); + */ + + /* + * Load the BLAST scores. + */ + printf ("Loading \"blast\" with contents of %s.\n", + BLASTFILE); + load_blast_scores (file_id, BLASTFILE); /* * Close the HDF5 file. -- cgit v0.8.3.1-22-g547a