1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/*
This file is a part of KMC software distributed under GNU GPL 3 licence.
The homepage of the KMC project is http://sun.aei.polsl.pl/kmc
Authors: Marek Kokot
Version: 3.2.4
Date : 2024-02-09
*/
#ifndef _DUMP_WRITER_H
#define _DUMP_WRITER_H
#include "defs.h"
#include "kmer.h"
#include "nc_utils.h"
#include "config.h"
#include <fstream>
//wrapper to simplify interface
//For kmc1 input and kmc2 input without -s parameter
template<typename KMCDB, unsigned SIZE, bool SORTED>
class CKMCDBForDump
{
KMCDB kmcdb;
public:
CKMCDBForDump() :
kmcdb(CConfig::GetInstance().headers.front(), CConfig::GetInstance().input_desc.front(), CConfig::GetInstance().percent_progress, KmerDBOpenMode::sequential){}
bool NextKmer(CKmer<SIZE>& kmer, uint32& counter)
{
return kmcdb.NextKmerSequential(kmer, counter);
}
};
//specialization for -s parameter nad kmc2 input
template<unsigned SIZE>
class CKMCDBForDump<CKMC2DbReader<SIZE>, SIZE, true>
{
CKMC2DbReader<SIZE>* kmcdb;
CBundle<SIZE> bundle;
public:
CKMCDBForDump() :
kmcdb(new CKMC2DbReader<SIZE>(CConfig::GetInstance().headers.front(), CConfig::GetInstance().input_desc.front(), CConfig::GetInstance().percent_progress, KmerDBOpenMode::sorted)),
bundle(kmcdb){}
bool NextKmer(CKmer<SIZE>& kmer, uint32& counter)
{
if(!bundle.Finished())
{
kmer = bundle.TopKmer();
counter = bundle.TopCounter();
bundle.Pop();
return true;
}
return false;
}
};
template<unsigned SIZE>
class CDumpWriterBase
{
static const uint32 OVERHEAD_SIZE = 1000;
uint32 counter_len;
std::string& file_src;
uint64 cutoff_max;
uint32 cutoff_min;
uint32 counter_max;
uint32 kmer_len;
uint32 kmer_bytes;
CConfig& config;
uint32 in_first_byte;
char* buf;
uint32 buf_size;
uint32 buf_pos;
FILE* file = nullptr;
struct DumpOpt
{
char* opt_ACGT;
DumpOpt(uint8_t encoding)
{
opt_ACGT = new char[1024];
//char codes[] = { 'A', 'C', 'G', 'T' };
char codes[4];
codes[(encoding >> 6) & 3] = 'A';
codes[(encoding >> 4) & 3] = 'C';
codes[(encoding >> 2) & 3] = 'G';
codes[ encoding & 3] = 'T';
uint32 pos = 0;
for (uint32 kmer = 0; kmer < 256; ++kmer)
{
opt_ACGT[pos++] = codes[(kmer >> 6) & 3];
opt_ACGT[pos++] = codes[(kmer >> 4) & 3];
opt_ACGT[pos++] = codes[(kmer >> 2) & 3];
opt_ACGT[pos++] = codes[kmer & 3];
}
}
~DumpOpt()
{
delete[]opt_ACGT;
}
}opt;
void kmerToStr(CKmer<SIZE>& kmer, char* kmer_str)
{
//first byte
char* base = opt.opt_ACGT + 4 * kmer.get_byte(kmer_bytes - 1) + 4 - in_first_byte;
for (uint32 i = 0; i < in_first_byte; ++i)
*kmer_str++ = *base++;
//rest
for (int pos = kmer_bytes - 2; pos >= 0; --pos)
{
base = opt.opt_ACGT + 4 * kmer.get_byte(pos);
*kmer_str++ = *base++;
*kmer_str++ = *base++;
*kmer_str++ = *base++;
*kmer_str++ = *base++;
}
}
protected:
void Init()
{
file = fopen(file_src.c_str(), "wb");
if (!file)
{
std::cerr << "Error: cannot open file: " << file_src << "\n";
exit(1);
}
buf_pos = 0;
buf_size = DUMP_BUF_SIZE;
buf = new char[buf_size];
}
void ProcessKmer(CKmer<SIZE>& kmer, uint32 counter)
{
//do not applay filtering if counter_size == 0 as it does not make sence
if (config.headers.front().counter_size == 0 || (counter >= cutoff_min && counter <= cutoff_max))
{
if (counter > counter_max)
counter = counter_max;
kmerToStr(kmer, buf + buf_pos);
buf[buf_pos + kmer_len] = '\t';
counter_len = CNumericConversions::Int2PChar(counter, (uchar*)(buf + buf_pos + kmer_len + 1));
buf[buf_pos + kmer_len + 1 + counter_len] = '\n';
buf_pos += kmer_len + 2 + counter_len;
if (buf_pos + OVERHEAD_SIZE > buf_size)
{
fwrite(buf, 1, buf_pos, file);
buf_pos = 0;
}
}
}
void Finish()
{
if (buf_pos)
{
fwrite(buf, 1, buf_pos, file);
buf_pos = 0;
}
fclose(file);
delete[] buf;
}
uint8_t get_encoding()
{
if (config.headers.front().GetType() == KmerFileType::KFF1)
return config.headers.front().kff_file_struct.encoding;
return 0b00011011;
}
protected:
CDumpWriterBase(std::string& file_src, uint64 cutoff_max, uint32 cutoff_min, uint32 counter_max) :
file_src(file_src),
cutoff_max(cutoff_max),
cutoff_min(cutoff_min),
counter_max(counter_max),
config(CConfig::GetInstance()),
opt(get_encoding())
{
kmer_len = config.headers.front().kmer_len;
kmer_bytes = (kmer_len + 3) / 4;
in_first_byte = kmer_len % 4;
if (in_first_byte == 0)
in_first_byte = 4;
}
};
template<typename KMCDB, unsigned SIZE>
class CDumpWriter : public CDumpWriterBase<SIZE>
{
KMCDB& kmcdb;
public:
CDumpWriter(KMCDB& kmcdb) :
CDumpWriterBase<SIZE>(CConfig::GetInstance().output_desc.file_src, CConfig::GetInstance().output_desc.cutoff_max, CConfig::GetInstance().output_desc.cutoff_min, CConfig::GetInstance().output_desc.counter_max),
kmcdb(kmcdb)
{
}
bool Process()
{
CKmer<SIZE> kmer;
uint32 counter;
this->Init();
while (kmcdb.NextKmer(kmer, counter))
{
this->ProcessKmer(kmer, counter);
}
this->Finish();
return true;
}
};
template<unsigned SIZE>
class CDumpWriterForTransform : public CDumpWriterBase<SIZE>
{
public:
CDumpWriterForTransform(CTransformOutputDesc& output_desc)
:
CDumpWriterBase<SIZE>(output_desc.file_src, output_desc.cutoff_max, output_desc.cutoff_min, output_desc.counter_max)
{
}
void Init()
{
CDumpWriterBase<SIZE>::Init();
}
void PutKmer(CKmer<SIZE>& kmer, uint32 counter)
{
this->ProcessKmer(kmer, counter);
}
void Finish()
{
CDumpWriterBase<SIZE>::Finish();
}
};
#endif
|