File: develop.h

package info (click to toggle)
kmc 3.2.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,716 kB
  • sloc: cpp: 38,308; python: 664; makefile: 216; perl: 179; sh: 34
file content (18 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _DEVELOP_H
#define _DEVELOP_H

#include "defs.h"

#define MAP_LOG_SRC "map.log"
#define KMERS_PER_BIN_LOG_FILE "kmers_per_bin.log"

void map_log(uint32 signature_len, uint32 map_size, int32* signature_map);

struct CKMCQueues;
struct CKMCParams;
void save_bins_stats(CKMCQueues& Queues, CKMCParams& Params, uint32 kmer_size, uint64 n_reads, uint32 signature_len, uint32 map_size, int32* signature_map);


#endif

// ***** EOF