author | Don Pellegrino <don@drexel.edu> | 2010-01-16 21:58:24 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2010-01-16 21:58:24 (GMT) |
commit | 4df01201d5f731703535da3b681d04d7c1cb44ad (patch) (unidiff) | |
tree | 18ab4f8cea092de4adbe061cd6976fa2727bb7d6 | |
parent | e8dbfca0fcc7a8925e720c6831131d7bb71847a3 (diff) | |
download | exp007-4df01201d5f731703535da3b681d04d7c1cb44ad.zip exp007-4df01201d5f731703535da3b681d04d7c1cb44ad.tar.gz exp007-4df01201d5f731703535da3b681d04d7c1cb44ad.tar.bz2 |
Added the assign_protein_type function declaration without implementation.
-rw-r--r-- | src/assign_protein_type.c | 8 | ||||
-rw-r--r-- | src/assign_protein_type.h | 12 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/assign_protein_type.c b/src/assign_protein_type.c new file mode 100644 index 0000000..2ba59a7 --- a/dev/null +++ b/src/assign_protein_type.c | |||
@@ -0,0 +1,8 @@ | |||
1 | #include "assign_protein_type.h" | ||
2 | |||
3 | void | ||
4 | assign_protein_type (hid_t file_id) | ||
5 | { | ||
6 | |||
7 | return; | ||
8 | } | ||
diff --git a/src/assign_protein_type.h b/src/assign_protein_type.h new file mode 100644 index 0000000..312b774 --- a/dev/null +++ b/src/assign_protein_type.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #ifndef ASSIGN_PROTEIN_TYPE_H | ||
2 | #define ASSIGN_PROTEIN_TYPE_H | ||
3 | |||
4 | #include <hdf5.h> | ||
5 | |||
6 | /* | ||
7 | * Determine the protein type for each protein sequence record. | ||
8 | */ | ||
9 | void | ||
10 | assign_protein_type (hid_t file_id); | ||
11 | |||
12 | #endif // ASSIGN_PROTEIN_TYPE_H | ||