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) (unidiff) | |
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 () | |||
40 | /* | 40 | /* |
41 | * Load the supplementary protein data file. | 41 | * Load the supplementary protein data file. |
42 | */ | 42 | */ |
43 | /* | ||
44 | printf ("Loading \"influenza_aa.dat\" with contents of %s.\n", | 43 | printf ("Loading \"influenza_aa.dat\" with contents of %s.\n", |
45 | INFLUENZA_AA_DAT); | 44 | INFLUENZA_AA_DAT); |
46 | load_influenza_aa_dat (file_id, INFLUENZA_AA_DAT); | 45 | load_influenza_aa_dat (file_id, INFLUENZA_AA_DAT); |
47 | */ | ||
48 | 46 | ||
49 | /* | 47 | /* |
50 | * Load the FASTA protein sequence data file. | 48 | * Load the FASTA protein sequence data file. |
51 | */ | 49 | */ |
52 | /* | ||
53 | printf ("Loading \"influenza.faa\" with contents of %s.\n", INFLUENZA_FAA); | 50 | printf ("Loading \"influenza.faa\" with contents of %s.\n", INFLUENZA_FAA); |
54 | load_influenza_faa (file_id, INFLUENZA_FAA); | 51 | load_influenza_faa (file_id, INFLUENZA_FAA); |
55 | */ | ||
56 | 52 | ||
57 | /* | 53 | /* |
58 | * Load the BLAST scores. | 54 | * Load the BLAST scores. |
59 | */ | 55 | */ |
56 | /* | ||
60 | printf ("Loading \"blast\" with contents of %s.\n", | 57 | printf ("Loading \"blast\" with contents of %s.\n", |
61 | BLASTFILE); | 58 | BLASTFILE); |
62 | load_blast_scores (file_id, BLASTFILE); | 59 | load_blast_scores (file_id, BLASTFILE); |
60 | */ | ||
63 | 61 | ||
64 | /* | 62 | /* |
65 | * Close the HDF5 file. | 63 | * Close the HDF5 file. |