author | Don Pellegrino <don@drexel.edu> | 2010-01-24 06:00:07 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2010-01-24 06:00:07 (GMT) |
commit | 675f19df0aff1ebeaf3cdbfabcb71dd738503d29 (patch) (side-by-side diff) | |
tree | 54c24ae11f61cd37d7bd8efdcc4aeec753868008 | |
parent | 7f499f1f481d563ccdbed90ef9aaa3a2c9a87dd4 (diff) | |
download | exp007-675f19df0aff1ebeaf3cdbfabcb71dd738503d29.zip exp007-675f19df0aff1ebeaf3cdbfabcb71dd738503d29.tar.gz exp007-675f19df0aff1ebeaf3cdbfabcb71dd738503d29.tar.bz2 |
Commented out loading the BLAST file as thing shouldn't have to be done again. Instead a new updator function will be needed.
-rw-r--r-- | src/aggregator.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/aggregator.c b/src/aggregator.c index 3bb3572..c789502 100644 --- a/src/aggregator.c +++ b/src/aggregator.c @@ -40,26 +40,24 @@ 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. |