https://github.com/splatlab/squeakr
Revision a4d4b0ebc64eec5f6862ddbff48ff1de891098ee authored by Prashant Pandey on 06 November 2018, 17:45:37 UTC, committed by Prashant Pandey on 06 November 2018, 17:45:37 UTC
2 parent s 8e25799 + 9acdaf5
Raw File
Tip revision: a4d4b0ebc64eec5f6862ddbff48ff1de891098ee authored by Prashant Pandey on 06 November 2018, 17:45:37 UTC
merge
Tip revision: a4d4b0e
squeakrconfig.h
/*
 * ============================================================================
 *
 *        Authors:  Prashant Pandey <ppandey@cs.stonybrook.edu>
 *                  Rob Johnson <robj@vmware.com>   
 *                  Rob Patro (rob.patro@cs.stonybrook.edu)
 *
 * ============================================================================
 */

#ifndef _SQUEAKR_CONFIG_H_
#define _SQUEAKR_CONFIG_H_

#include <stdio.h>

#define VERSION 2

typedef struct __attribute__ ((__packed__)) squeakrconfig {
	uint64_t kmer_size;
	uint64_t cutoff;
	uint64_t contains_counts;
	uint64_t endianness{0x0102030405060708ULL};
	uint32_t version{VERSION};
} squeakrconfig;

#endif
back to top