This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import os | |
import gfapy | |
import argparse | |
from textwrap import wrap | |
from Bio.Seq import Seq | |
op = argparse.ArgumentParser(description=__doc__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef CYCLICHASH_HPP | |
#define CYCLICHASH_HPP | |
#include <cstdint> | |
#include <cstdlib> | |
template<typename chartype = uint8_t> | |
class DNASeqHash { | |
/// The hash digest type. | |
typedef uint64_t digest; |