summaryrefslogtreecommitdiffstats
Unidiff
-rw-r--r--src/aggregator.c14
-rw-r--r--src/check_ncbi_error.c3
-rw-r--r--src/load_influenza_aa_dat.c2
-rw-r--r--src/load_influenza_faa.c115
4 files changed, 126 insertions, 8 deletions
diff --git a/src/aggregator.c b/src/aggregator.c
index 5fb9d4a..36ea18c 100644
--- a/src/aggregator.c
+++ b/src/aggregator.c
@@ -16,26 +16,26 @@ main ()
16 /*16 /*
17 * Create the HDF5 file.17 * Create the HDF5 file.
18 */18 */
19 // hid_t file_id = H5Fcreate (FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);19 hid_t file_id = H5Fcreate (FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
2020
21 /*21 /*
22 * Load the supplementary protein data file.22 * Load the supplementary protein data file.
23 */23 */
24 // load_influenza_aa_dat (file_id);24 load_influenza_aa_dat (file_id);
2525
26 /*26 /*
27 * Load the FASTA protein sequence data file.27 * Load the FASTA protein sequence data file.
28 */28 */
29 // load_influenza_faa (file_id);29 load_influenza_faa (file_id);
3030
31 /*31 /*
32 * Close the HD5 file.32 * Close the HD5 file.
33 */33 */
34 // herr_t status = H5Fclose (file_id);34 herr_t status = H5Fclose (file_id);
35 // if (status < 0)35 if (status < 0)
36 // check_h5_error (status, __FILE__, __LINE__);36 check_h5_error (status, __FILE__, __LINE__);
3737
38 assign_protein_type (0);38 // assign_protein_type (0);
3939
40 return 0;40 return 0;
41}41}

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.