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
|
/*
* vcf_file.cpp
*
* Created on: Aug 19, 2009
* Author: Adam Auton
* ($Revision: 230 $)
*/
#include "vcf_file.h"
vcf_file::vcf_file(const string &filename, bool compressed, const string &chr, const string &exclude_chr, bool force_write_index) :
filename(filename),
compressed(compressed),
has_body(false),
has_file_format(false),
has_genotypes(false),
has_header(false),
has_meta(false)
{
open();
scan_file(chr, exclude_chr, force_write_index);
}
vcf_file::~vcf_file()
{
close();
}
// Parse VCF meta information
void vcf_file::parse_meta(const string &line)
{
has_meta = true;
meta.push_back(line);
size_t found=line.find("##fileformat=");
if (found!=string::npos)
{
has_file_format = true;
found = line.find_first_of("=");
string version = line.substr(found+1);
if ((version != "VCFv4.0") && (version != "VCFv4.1"))
LOG.error("VCF version must be v4.0 or v4.1:\nYou are using version " + version);
}
found=line.find("##INFO=");
if (found!=string::npos)
{ // Found an INFO descriptor
vcf_entry::add_INFO_descriptor(line);
}
found=line.find("##FILTER=");
if (found!=string::npos)
{ // Found a FILTER descriptor
vcf_entry::add_FILTER_descriptor(line);
}
found=line.find("##FORMAT=");
if (found!=string::npos)
{ // Found a genotype filter descriptor
vcf_entry::add_FORMAT_descriptor(line);
}
}
// Parse VCF header, and extract individuals etc.
void vcf_file::parse_header(const string &line)
{
// #CHROM POS ID REF ALT QUAL FILTER INFO (FORMAT NA00001 NA00002 ... )
if (has_header == true)
LOG.warning("Multiple Header lines.");
has_header = true;
istringstream header(line);
int count = 0;
string tmp_str;
unsigned int N_header_indv = 0;
has_genotypes = false;
while (!header.eof())
{
//header >> tmp_str;
getline(header, tmp_str, '\t');
switch (count)
{
case 0: if (tmp_str != "#CHROM") LOG.warning("First Header entry should be #CHROM: " + tmp_str); break;
case 1: if (tmp_str != "POS") LOG.warning("Second Header entry should be POS: " + tmp_str); break;
case 2: if (tmp_str != "ID") LOG.warning("Third Header entry should be ID: " + tmp_str); break;
case 3: if (tmp_str != "REF") LOG.warning("Fourth Header entry should be REF: " + tmp_str); break;
case 4: if (tmp_str != "ALT") LOG.warning("Fifth Header entry should be ALT: " + tmp_str); break;
case 5: if (tmp_str != "QUAL") LOG.warning("Sixth Header entry should be QUAL: " + tmp_str); break;
case 6: if (tmp_str != "FILTER") LOG.warning("Seventh Header entry should be FILTER: " + tmp_str); break;
case 7: if (tmp_str != "INFO") LOG.warning("Eighth Header entry should be INFO: " + tmp_str); break;
case 8:
if (tmp_str != "FORMAT")
LOG.warning("Ninth Header entry should be FORMAT: " + tmp_str);
else
has_genotypes = true;
break;
default:
{
if (count <= 8)
LOG.error("Incorrectly formatted header.");
indv.push_back(tmp_str);
N_header_indv++;
}
break;
}
count++;
}
N_indv = N_header_indv;
if ((has_genotypes == true ) && (N_indv == 0))
LOG.warning("FORMAT field without genotypes?");
}
// Read VCF file
void vcf_file::scan_file(const string &chr, const string &exclude_chr, bool force_write_index)
{
bool filter_by_chr = (chr != "");
bool exclude_by_chr = (exclude_chr != "");
string index_filename = filename + ".vcfidx";
bool could_read_index_file = false;
if (force_write_index == false)
could_read_index_file = read_index_file(index_filename);
string CHROM, last_CHROM="";
int POS, last_POS = -1;
bool found_header = false;
bool found_meta = false;
if (could_read_index_file == false)
{
LOG.printLOG("Building new index file.\n");
string line, CHROM, last_CHROM = "";
streampos filepos;
char c;
N_entries=0;
N_indv = 0;
while (!feof())
{
filepos = get_filepos();
c = peek();
if ((c == '\n') || (c == '\r'))
{
read_line(line);
continue;
}
else if (c == EOF)
break;
if (c == '#')
{
read_line(line);
if (line[1] == '#')
{ // Meta information
parse_meta(line);
found_meta = true;
}
else
{ // Must be header information: #CHROM POS ID REF ALT QUAL FILTER INFO (FORMAT NA00001 NA00002 ... )
parse_header(line);
found_header = true;
}
}
else
{ // Must be a data line
if ((found_header == false) || (found_meta == false))
LOG.error("No header or meta information. Invalid file: " + filename);
read_CHROM_and_POS_and_skip_remainder_of_line(CHROM, POS);
if (last_CHROM != CHROM)
{
LOG.printLOG("\tScanning Chromosome: " + CHROM + "\n");
last_CHROM = CHROM;
}
if (POS == last_POS)
LOG.one_off_warning("\tWarning - file contains entries with the same position. These entries will be processed separately.\n");
last_POS = POS;
entry_file_locations.push_back(filepos);
N_entries++;
}
}
if ((found_header == false) || (found_meta == false))
LOG.error("No header or meta information. Invalid file: " + filename);
write_index_file(index_filename);
}
LOG.printLOG("File contains " + output_log::int2str(N_entries) + " entries and " + output_log::int2str(N_indv) + " individuals.\n");
vector<string> meta_lines = meta; meta.resize(0);
for (unsigned int ui=0; ui<meta_lines.size(); ui++)
parse_meta(meta_lines[ui]);
has_genotypes = (N_indv > 0);
bool already_found_required_chr = false;
bool already_filtered_required_chr = false;
if ((exclude_by_chr == true) || (filter_by_chr == true))
{
LOG.printLOG("Filtering by chromosome.\n");
for (unsigned int ui=0; ui<N_entries; ui++)
{
if (already_found_required_chr == true)
{
LOG.printLOG("Skipping Remainder.\n");
entry_file_locations.erase(entry_file_locations.begin()+ui, entry_file_locations.end());
break;
}
if (already_filtered_required_chr == true)
{
LOG.printLOG("Skipping Remainder.\n");
break;
}
set_filepos(entry_file_locations[ui]);
read_CHROM_only(CHROM);
if (last_CHROM != CHROM)
{
LOG.printLOG("\tChromosome: " + CHROM + "\n");
if ((filter_by_chr == true) && (last_CHROM == chr))
already_found_required_chr = true;
if ((exclude_by_chr == true) && (last_CHROM == exclude_chr))
already_filtered_required_chr = true;
last_CHROM = CHROM;
}
if ((exclude_by_chr == true) && (CHROM == exclude_chr))
{
entry_file_locations[ui] = -1;
continue;
}
if ((filter_by_chr == true) && (CHROM != chr))
{
entry_file_locations[ui] = -1;
continue;
}
}
sort(entry_file_locations.begin(), entry_file_locations.end());
while((entry_file_locations.size() > 0) && (entry_file_locations[0] < 0))
entry_file_locations.pop_front();
N_entries = entry_file_locations.size();
LOG.printLOG("Keeping " + output_log::int2str(N_entries) + " entries on specified chromosomes.\n");
}
include_indv.clear();
include_indv.resize(N_indv, true);
include_entry.clear();
include_entry.resize(N_entries, true);
include_genotype.clear();
include_genotype.resize(N_entries, vector<bool>(N_indv, true));
}
void vcf_file::print(ostream &out, const set<string> &INFO_to_keep, bool keep_all_INFO)
{
for (unsigned int ui=0; ui<meta.size(); ui++)
out << meta[ui] << endl;
out << "#CHROM\tPOS\tID\tREF\tALT\tQUAL\tFILTER\tINFO";
if (N_indv > 0)
out << "\tFORMAT";
for (unsigned int ui=0; ui<N_indv; ui++)
if (include_indv[ui])
out << "\t" << indv[ui];
out << endl;
string vcf_line;
for (unsigned int s=0; s<N_entries; s++)
if (include_entry[s] == true)
{
get_vcf_entry(s, vcf_line);
vcf_entry e(N_indv, vcf_line);
e.parse_basic_entry(true, true, true);
e.parse_full_entry(true);
e.parse_genotype_entries(true,true,true,true);
e.print(out, INFO_to_keep, keep_all_INFO, include_indv, include_genotype[s]);
}
}
void vcf_file::print(const string &output_file_prefix, const set<string> &INFO_to_keep, bool keep_all_INFO)
{
LOG.printLOG("Outputting VCF file... ");
string output_file = output_file_prefix + ".recode.vcf";
ofstream out(output_file.c_str());
if (!out.is_open())
LOG.error("Could not open VCF Output File: " + output_file, 3);
print(out, INFO_to_keep, keep_all_INFO);
out.close();
LOG.printLOG("Done\n");
}
// Return the number of individuals that have not been filtered out
int vcf_file::N_kept_individuals() const
{
int N_kept = 0;
for (unsigned int ui=0; ui<include_indv.size(); ui++)
if (include_indv[ui] == true)
N_kept++;
return N_kept;
}
// Return the number of sites that have not been filtered out
int vcf_file::N_kept_sites() const
{
int N_kept = 0;
for (unsigned int ui=0; ui<include_entry.size(); ui++)
if (include_entry[ui] == true)
N_kept++;
return N_kept;
}
// Count the number of genotypes that have not been filtered out
unsigned int vcf_file::N_genotypes_included(unsigned int entry_num) const
{
unsigned int count = 0, ui;
for (ui=0; ui<N_indv; ui++)
if ((include_indv[ui] == true) && (include_genotype[entry_num][ui] == true))
count++;
return count;
}
void vcf_file::open()
{
// Check if the file
struct stat buf ;
int i;
i = stat(filename.c_str(), &buf);
if (i != 0)
LOG.error("Can't determine file type of " + filename, 0);
if (!S_ISREG(buf.st_mode))
LOG.error("Does not appear to be a regular file: " + filename, 0);
if (!compressed)
{
if (filename.substr(filename.size()-3) == ".gz")
LOG.error("Filename ends in '.gz'. Shouldn't you be using --gzvcf?\n");
vcf_in.open(filename.c_str(), ios::in);
if (!vcf_in.is_open())
LOG.error("Could not open VCF file: " + filename, 0);
}
else
{
gzMAX_LINE_LEN = 1024*1024;
gz_readbuffer = new char[gzMAX_LINE_LEN];
gzvcf_in = gzopen(filename.c_str(), "rb");
if (gzvcf_in == NULL)
LOG.error("Could not open GZVCF file: " + filename, 0);
#ifdef ZLIB_VERNUM
string tmp(ZLIB_VERSION);
LOG.printLOG("Using zlib version: " + tmp + "\n");
#if (ZLIB_VERNUM >= 0x1240)
gzbuffer(gzvcf_in, gzMAX_LINE_LEN); // Included in zlib v1.2.4 and makes things MUCH faster
#else
LOG.printLOG("Versions of zlib >= 1.2.4 will be *much* faster when reading zipped VCF files.\n");
#endif
#endif
}
}
void vcf_file::close()
{
if (!compressed)
vcf_in.close();
else
{
gzclose(gzvcf_in);
delete [] gz_readbuffer;
}
}
bool vcf_file::feof()
{
bool out;
if (!compressed)
out = vcf_in.eof();
else
{
out = gzeof(gzvcf_in); // Returns 1 when EOF has previously been detected reading the given input stream, otherwise zero.
}
return out;
}
streampos vcf_file::get_filepos()
{
if (!compressed)
return vcf_in.tellg();
else
{
return gztell(gzvcf_in); // TODO: Type check
}
}
void vcf_file::set_filepos(streampos &filepos)
{
if (!compressed)
{
vcf_in.clear();
vcf_in.seekg(filepos, ios::beg);
}
else
{
gzseek(gzvcf_in, filepos, SEEK_SET);
}
}
void vcf_file::get_vcf_entry(unsigned int entry_num, string &out)
{
streampos filepos = entry_file_locations[entry_num];
set_filepos(filepos);
read_line(out);
}
void vcf_file::read_line(string &out)
{
if (!compressed)
{
getline(vcf_in, out);
out.erase( out.find_last_not_of(" \t\n\r") + 1); // Trim whitespace at end of line
}
else
{
out = "";
bool again = true;
while (again == true)
{
gzgets(gzvcf_in, gz_readbuffer, gzMAX_LINE_LEN);
out.append(gz_readbuffer);
if (strlen(gz_readbuffer) != gzMAX_LINE_LEN-1)
again = false;
}
out.erase( out.find_last_not_of(" \t\n\r") + 1); // Trim whitespace at end of line (required in gzipped case!)
}
}
char vcf_file::peek()
{
if (!compressed)
return vcf_in.peek();
else
{
char c = gzgetc(gzvcf_in);
gzungetc(c, gzvcf_in);
return c;
}
}
void vcf_file::read_CHROM_and_POS_and_skip_remainder_of_line(string &CHROM, int &POS)
{
if (!compressed)
{
getline(vcf_in, CHROM, '\t');
vcf_in >> POS;
vcf_in.ignore(std::numeric_limits<streamsize>::max(), '\n');
}
else
{
static string line;
static stringstream ss;
read_line(line);
ss.clear(); ss.str(line);
getline(ss, CHROM, '\t');
ss >> POS;
}
}
void vcf_file::read_CHROM_only(string &CHROM)
{ // Just read in the chromosome. Note: leaves the stream in a funny state, but is faster than reading whole line
if (!compressed)
{
getline(vcf_in, CHROM, '\t');
}
else
{
CHROM = "";
char c = gzgetc(gzvcf_in);
while (c != '\t')
{
CHROM += c;
c = gzgetc(gzvcf_in);
}
}
}
void vcf_file::read_CHROM_and_POS_only(string &CHROM, int &POS)
{ // Just read in the chromosome and position. Note: leaves the stream in a funny state, but is faster than reading whole line
if (!compressed)
{
getline(vcf_in, CHROM, '\t');
vcf_in >> POS;
}
else
{
CHROM = "";
char c = gzgetc(gzvcf_in);
while (c != '\t')
{
CHROM += c;
c = gzgetc(gzvcf_in);
}
string tmp;
c = gzgetc(gzvcf_in);
while (c != '\t')
{
tmp += c;
c = gzgetc(gzvcf_in);
}
POS = atoi(tmp.c_str());
}
}
|