-rw-r--r-- | src/Makefile.am | 11 | ||||
-rw-r--r-- | src/aggregator.c | 7 | ||||
-rw-r--r-- | src/updator.c | 33 |
3 files changed, 43 insertions, 8 deletions
diff --git a/src/aggregator.c b/src/aggregator.c index 36ea18c..07aba39 100644 --- a/src/aggregator.c +++ b/src/aggregator.c @@ -3,7 +3,6 @@ * container. */ -#include "assign_protein_type.h" #include "check_h5_error.h" #include "load_influenza_aa_dat.h" #include "load_influenza_faa.h" @@ -17,6 +16,8 @@ main () * Create the HDF5 file. */ hid_t file_id = H5Fcreate (FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + if (file_id < 0) + check_h5_error (file_id, __FILE__, __LINE__); /* * Load the supplementary protein data file. @@ -29,13 +30,11 @@ main () load_influenza_faa (file_id); /* - * Close the HD5 file. + * Close the HDF5 file. */ herr_t status = H5Fclose (file_id); if (status < 0) check_h5_error (status, __FILE__, __LINE__); - // assign_protein_type (0); - return 0; } |