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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
// -*-mode:c++; c-style:k&r; c-basic-offset:4;-*-
//
// Copyright 2012-2021, Julian Catchen <jcatchen@illinois.edu>
//
// This file is part of Stacks.
//
// Stacks is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Stacks is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Stacks. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef EXPORT_FORMATS_H
#define EXPORT_FORMATS_H
#include <iostream>
#include <utility>
#include <map>
#include <typeinfo>
#include <typeindex>
#include "locus.h"
#include "PopMap.h"
#include "PopSum.h"
#include "ordered.h" // for "snp"
#include "mapping_utils.h"
#include "genotype_dictionaries.h"
void tally_complete_haplotypes(
Datum const*const* data,
size_t n_samples,
strand_type loc_strand,
vector<pair<const char*, size_t>>& haps_sorted_decr_freq,
map<const char*, size_t, LessCStrs>& hap_indexes_map
);
class Export {
protected:
string _path;
ofstream _fh;
public:
Export() {}
virtual ~Export() {}
virtual int open(const MetaPopInfo *) = 0;
virtual int write_header() = 0;
virtual int write_batch(const vector<LocBin *> &) = 0;
virtual int post_processing() {return 0;}
virtual void close() {this->_fh.close();}
bool is_hap_export();
string tmp_path() const {return this->_path + ".part";}
static int transpose(ifstream &ifh, vector<string> &transposed);
};
class OrderableExport : public Export {
public:
OrderableExport() {}
virtual ~OrderableExport() {}
int write_batch(const vector<LocBin*>& loci);
protected:
virtual int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index) = 0;
};
class GenPos {
public:
uint id;
uint bp;
uint snp_index;
loc_type type;
GenPos(int id, int snp_index, int bp) {
this->id = id;
this->snp_index = snp_index;
this->bp = bp;
this->type = snp;
}
GenPos(int id, int snp_index, int bp, loc_type type) {
this->id = id;
this->snp_index = snp_index;
this->bp = bp;
this->type = type;
}
bool operator<(const GenPos& other) const {return bp < other.bp;}
};
class MarkersExport: public Export {
//
// Output a list of heterozygous loci and the associated haplotype frequencies.
//
const MetaPopInfo *_mpopi;
public:
MarkersExport() : _mpopi(NULL) {}
~MarkersExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class RawHaplotypesExport: public Export {
//
// Output a list of heterozygous loci and the associated haplotype frequencies.
//
const MetaPopInfo *_mpopi;
public:
RawHaplotypesExport() : _mpopi(NULL) {}
~RawHaplotypesExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class SumstatsExport: public Export {
//
// Output the locus-level summary statistics.
//
const MetaPopInfo *_mpopi;
uint _pop_cnt;
public:
SumstatsExport() : _mpopi(NULL), _pop_cnt(UINT_MAX) {}
~SumstatsExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class HapstatsExport: public Export {
//
// Output the locus-level haplotype statistics.
//
const MetaPopInfo *_mpopi;
uint _pop_cnt;
public:
HapstatsExport() : _mpopi(NULL), _pop_cnt(UINT_MAX) {}
~HapstatsExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class SnpDivergenceExport: public Export {
//
// Output the SNP-level divergence statistics.
//
const MetaPopInfo *_mpopi;
vector<ofstream *> _fhs;
OPopPair<PopPair> *_order;
public:
SnpDivergenceExport(ofstream &log_fh);
~SnpDivergenceExport() {
for (uint i = 0; i < this->_fhs.size(); i++)
delete this->_fhs[i];
delete this->_order;
}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &) { return 0; }
int write_batch_pairwise(const vector<LocBin *> &, const vector<vector<PopPair **>> &);
void close() {
for (uint i = 0; i < this->_fhs.size(); i++)
this->_fhs[i]->close();
return;
}
private:
int write_site(ofstream *fh, const PopPair *pp, string chr);
};
class HapDivergenceExport: public Export {
//
// Output the SNP-level divergence statistics.
//
const MetaPopInfo *_mpopi;
vector<ofstream *> _fhs;
ofstream *_metapop_fh;
public:
HapDivergenceExport() : _mpopi(NULL), _metapop_fh(NULL) {}
~HapDivergenceExport() {
for (uint i = 0; i < this->_fhs.size(); i++)
delete this->_fhs[i];
}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &) { return 0; }
int write_batch_pairwise(const vector<LocBin *> &, const vector<vector<HapStat *>> &, const vector<HapStat *> &);
void close() {
for (uint i = 0; i < this->_fhs.size(); i++)
this->_fhs[i]->close();
return;
}
};
class PlinkExport: public OrderableExport {
const MetaPopInfo *_mpopi;
ofstream _tmpfh;
ifstream _intmpfh;
string _markers_path;
ofstream _markers_fh;
public:
PlinkExport() : _mpopi(NULL) {}
~PlinkExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &loci);
int post_processing();
void close();
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class GenePopExport: public OrderableExport {
const MetaPopInfo *_mpopi;
ofstream _tmpfh;
public:
GenePopExport() : _mpopi(NULL) {}
~GenePopExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int post_processing();
void close() {this->_fh.close(); remove(this->tmp_path().c_str());}
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class GenePopHapsExport: public Export {
const MetaPopInfo *_mpopi;
ofstream _tmpfh;
size_t _n_digits;
public:
GenePopHapsExport() : _mpopi(NULL), _n_digits(2) {}
~GenePopHapsExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin*>& loci);
int post_processing();
void close() {this->_fh.close(); remove(this->tmp_path().c_str());}
void set_digits(size_t n) { assert(n==2 || n==3); _n_digits=n; }
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class StructureExport: public OrderableExport {
const MetaPopInfo *_mpopi;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
public:
StructureExport() : _mpopi(NULL) {}
~StructureExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int post_processing();
void close();
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class FineRADStructureExport: public Export {
const MetaPopInfo *_mpopi;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
public:
FineRADStructureExport() : _mpopi(NULL) {}
~FineRADStructureExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class PhylipExport: public OrderableExport {
protected:
const MetaPopInfo *_mpopi;
string _log_path;
ofstream _logfh;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
size_t _site_index;
public:
PhylipExport() : _mpopi(NULL), _site_index(0) {}
int open(const MetaPopInfo *mpopi);
int write_header();
int post_processing();
void close();
};
class PhylipVarExport: public PhylipExport {
public:
PhylipVarExport() {}
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class PhylipFixedExport: public PhylipExport {
public:
PhylipFixedExport() {}
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class PhylipVarAllExport: public Export {
const MetaPopInfo *_mpopi;
string _log_path;
ofstream _logfh;
ofstream _parfh;
string _partition_path;
size_t _seq_len;
size_t _site_index;
size_t _loc_cnt;
map<int, string> _outstrs;
public:
PhylipVarAllExport() : _mpopi(NULL), _seq_len(0), _site_index(1), _loc_cnt(1) {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
int post_processing();
void close();
};
class HzarExport: public OrderableExport {
const MetaPopInfo *_mpopi;
ofstream _tmpfh;
string _tmp_path;
ifstream _intmpfh;
public:
HzarExport() : _mpopi(NULL) {}
~HzarExport() {}
int open(const MetaPopInfo *mpopi);
int write_header() { return 0; };
int post_processing();
void close();
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class FastaLociExport: public Export {
//
// Output a list of heterozygous loci and the associated haplotype frequencies.
//
const MetaPopInfo *_mpopi;
public:
FastaLociExport() : _mpopi(NULL) {}
~FastaLociExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class FastaRawExport: public Export {
//
// Output a list of heterozygous loci and the associated haplotype frequencies.
//
const MetaPopInfo *_mpopi;
public:
FastaRawExport() : _mpopi(NULL) {}
~FastaRawExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class FastaSamplesExport: public Export {
//
// Output a list of heterozygous loci and the associated haplotype frequencies.
//
const MetaPopInfo *_mpopi;
public:
FastaSamplesExport() : _mpopi(NULL) {}
~FastaSamplesExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class VcfExport: public OrderableExport {
const MetaPopInfo*_mpopi;
VcfWriter* _writer;
public:
VcfExport() : _mpopi(NULL), _writer(NULL) {}
~VcfExport() { delete this->_writer; }
int open(const MetaPopInfo *mpopi);
int write_header() { return 0; }
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class VcfHapsExport: public Export {
const MetaPopInfo*_mpopi;
VcfWriter* _writer;
public:
VcfHapsExport() : _mpopi(NULL), _writer(NULL) {}
~VcfHapsExport() { delete this->_writer; }
int open(const MetaPopInfo *mpopi);
int write_batch(const vector<LocBin*>& loci);
int write_header() { return 0; }
};
class TreemixExport: public OrderableExport {
const MetaPopInfo*_mpopi;
ofstream _writer;
public:
TreemixExport() : _mpopi(NULL), _writer(NULL) {}
int open(const MetaPopInfo *mpopi);
int write_header() { return 0; }
private:
int write_site(const CSLocus* cloc, const LocPopSum* psum, Datum const*const* datums, size_t col, size_t index);
};
class GtfExport: public Export {
//
// Output the locus-level haplotype statistics.
//
const MetaPopInfo *_mpopi;
public:
GtfExport() : _mpopi(NULL) {}
~GtfExport() {}
int open(const MetaPopInfo *mpopi);
int write_header();
int write_batch(const vector<LocBin *> &);
};
class JoinMapExport: public Export {
const MetaPopInfo*_mpopi;
const MappingGenotypesProcessor *_gproc;
size_t _progeny_index;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
map<string, string> _marker_map;
map<string, map<string, string>> _genotype_map;
public:
JoinMapExport(MappingGenotypesProcessor *g) : _mpopi(NULL), _gproc(g) {}
JoinMapExport() : _mpopi(NULL), _gproc(NULL) {}
int open(const MetaPopInfo *mpopi);
int write_batch(const vector<LocBin*>& loci);
int write_header() { return 0; }
int post_processing();
void close();
};
class OneMapExport: public Export {
const MetaPopInfo*_mpopi;
const MappingGenotypesProcessor *_gproc;
size_t _progeny_index;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
map<string, string> _onemap_marker_types =
{{"abxoo", "D1.11"},
{"ooxab", "D2.16"},
{"abxaa", "D1.10"},
{"aaxab", "D2.15"},
{"abxab", "B3.7"},
{"abxac", "A.2"},
{"abxcd", "A.1"}};
map<string, string> _marker_map;
map<string, map<string, string>> _genotype_map;
public:
OneMapExport(MappingGenotypesProcessor *g) : _mpopi(NULL), _gproc(g) {}
OneMapExport() : _mpopi(NULL) {}
int open(const MetaPopInfo *mpopi);
int write_batch(const vector<LocBin*>& loci);
int write_header() { return 0; }
int post_processing();
void close();
};
class rQTLExport: public Export {
const MetaPopInfo*_mpopi;
const MappingGenotypesProcessor *_gproc;
size_t _progeny_index;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
map<string, string> _marker_map;
map<string, map<string, string>> _genotype_map;
public:
rQTLExport(MappingGenotypesProcessor *g) : _mpopi(NULL), _gproc(g) {}
rQTLExport() : _mpopi(NULL) {}
int open(const MetaPopInfo *mpopi);
int write_batch(const vector<LocBin*>& loci);
int write_header();
int post_processing();
void close();
};
class MapMakerExport: public Export {
const MetaPopInfo*_mpopi;
const MappingGenotypesProcessor *_gproc;
size_t _progeny_index;
string _tmp_path;
ofstream _tmpfh;
ifstream _intmpfh;
map<string, string> _marker_map;
map<string, map<string, string>> _genotype_map;
public:
MapMakerExport(MappingGenotypesProcessor *g) : _mpopi(NULL), _gproc(g) {}
MapMakerExport() : _mpopi(NULL) {}
int open(const MetaPopInfo *mpopi);
int write_batch(const vector<LocBin*>& loci);
int write_header() { return 0; }
int post_processing();
void close();
};
/*
int write_generic(map<int, CSLocus *> &, PopMap<CSLocus> *, bool);
int write_phase(map<int, CSLocus *> &, PopMap<CSLocus> *, PopSum<CSLocus> *);
int write_fastphase(map<int, CSLocus *> &, PopMap<CSLocus> *, PopSum<CSLocus> *);
*/
int find_datum_allele_depths(const Datum*, int, char, char, int &, int &);
int tally_observed_haplotypes(const vector<char *> &, int, char &, char &);
#endif // EXPORT_FORMATS_H
|