path:
root/
src/
aggregator.c (
plain)
blob: 5fb9d4ad310a5e1eed22b2621a284e781e28e72c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* Aggregate the collected influenza data into a single HDF5
* container.
*/
#include "assign_protein_type.h"
#include "check_h5_error.h"
#include "load_influenza_aa_dat.h"
#include "load_influenza_faa.h"
#define FILE "influenza.h5"
int
main ()
{
/*
* Create the HDF5 file.
*/
// hid_t file_id = H5Fcreate (FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
/*
* Load the supplementary protein data file.
*/
// load_influenza_aa_dat (file_id);
/*
* Load the FASTA protein sequence data file.
*/
// load_influenza_faa (file_id);
/*
* Close the HD5 file.
*/
// herr_t status = H5Fclose (file_id);
// if (status < 0)
// check_h5_error (status, __FILE__, __LINE__);
assign_protein_type (0);
return 0;
}
|