-rw-r--r-- | configure.ac | 20 | ||||
-rw-r--r-- | src/Makefile.am | 6 | ||||
-rw-r--r-- | src/aggregator.c | 14 | ||||
-rw-r--r-- | src/assign_protein_type.c | 72 | ||||
-rw-r--r-- | src/assign_protein_type.h | 6 | ||||
-rw-r--r-- | src/check_error.c | 14 | ||||
-rw-r--r-- | src/check_error.h | 11 | ||||
-rw-r--r-- | src/check_h5_error.c | 12 | ||||
-rw-r--r-- | src/check_h5_error.h | 12 | ||||
-rw-r--r-- | src/check_ncbi_error.c | 13 | ||||
-rw-r--r-- | src/check_ncbi_error.h | 13 | ||||
-rw-r--r-- | src/load_influenza_aa_dat.c | 31 |
12 files changed, 211 insertions, 13 deletions
diff --git a/src/check_h5_error.h b/src/check_h5_error.h new file mode 100644 index 0000000..74730cd --- a/dev/null +++ b/src/check_h5_error.h @@ -0,0 +1,12 @@ +#ifndef CHECK_H5_ERROR_H +#define CHECK_H5_ERROR_H + +#include <hdf5.h> + +/* + * Handle errors from the HDF5 API. + */ +void +check_h5_error (herr_t status, const char* filename, unsigned int linenum); + +#endif // CHECK_H5_ERROR_H |