]> git.donarmstrong.com Git - samtools.git/blobdiff - bcftools/bcfutils.c
* added prelimiary VCF parser (not finished)
[samtools.git] / bcftools / bcfutils.c
index e0e4a064662b964f2eef0d99ccce25d1e7be435b..861e33fa6bf1a9e24955b9c3f459d6d248a83b5a 100644 (file)
@@ -15,6 +15,16 @@ void *bcf_build_refhash(bcf_hdr_t *h)
        return hash;
 }
 
+void *bcf_str2id_init()
+{
+       return kh_init(str2id);
+}
+
+int bcf_str2id_put(void *_hash, const char *str, int id)
+{
+       return 0;
+}
+
 void bcf_str2id_destroy(void *_hash)
 {
        khash_t(str2id) *hash = (khash_t(str2id)*)_hash;