-rw-r--r-- | src/aggregator.c | 10 | ||||
-rw-r--r-- | src/assign/assign_protein_type.c | 24 | ||||
-rw-r--r-- | src/error/check_h5_error.c | 2 | ||||
-rw-r--r-- | src/error/check_h5_error.h | 2 | ||||
-rw-r--r-- | src/load/load_influenza_aa_dat.c | 12 | ||||
-rw-r--r-- | src/load/load_influenza_faa.c | 12 | ||||
-rw-r--r-- | src/updator.c | 4 |
7 files changed, 35 insertions, 31 deletions
diff --git a/src/updator.c b/src/updator.c index 9a5ad18..f93e205 100644 --- a/src/updator.c +++ b/src/updator.c | |||
@@ -17,7 +17,7 @@ main () | |||
17 | */ | 17 | */ |
18 | hid_t file_id = H5Fopen (FILE, H5F_ACC_RDWR, H5P_DEFAULT); | 18 | hid_t file_id = H5Fopen (FILE, H5F_ACC_RDWR, H5P_DEFAULT); |
19 | if (file_id < 0) | 19 | if (file_id < 0) |
20 | check_h5_error (file_id, __FILE__, __LINE__); | 20 | check_h5_error (__FILE__, __LINE__); |
21 | 21 | ||
22 | /* | 22 | /* |
23 | * Assign protein type values to the sequence records. | 23 | * Assign protein type values to the sequence records. |
@@ -29,7 +29,7 @@ main () | |||
29 | */ | 29 | */ |
30 | herr_t status = H5Fclose (file_id); | 30 | herr_t status = H5Fclose (file_id); |
31 | if (status < 0) | 31 | if (status < 0) |
32 | check_h5_error (status, __FILE__, __LINE__); | 32 | check_h5_error (__FILE__, __LINE__); |
33 | 33 | ||
34 | return 0; | 34 | return 0; |
35 | } | 35 | } |