https://github.com/splatlab/squeakr
Raw File
Tip revision: 0d5813442b49454d35507ec4445170f1645ded6d authored by prashantpandey on 18 December 2020, 05:05:14 UTC
Merge branch 'development'
Tip revision: 0d58134
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