NVBIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Macros | Functions
vcf.cpp File Reference
#include <nvbio/basic/console.h>
#include <nvbio/io/vcf.h>
#include <nvbio/io/bufferedtextfile.h>
#include <nvbio/basic/dna.h>
#include <stdlib.h>
#include <string.h>

Go to the source code of this file.

Namespaces

 nvbio
 Define a vector_view POD type and plain_view() for std::vector.
 
 nvbio::io
 

Macros

#define NEXT(prev, next)
 

Functions

bool nvbio::io::loadVCF (SNPDatabase &output, const char *file_name)
 

Macro Definition Documentation

#define NEXT (   prev,
  next 
)
Value:
{ \
if (prev) \
{ \
next = strchr(prev, '\t'); \
if (next) \
{ \
*next = '\0'; \
next++; \
} \
} \
}