RecordWriter

Abstraction for writing string-based records to a file. Intended for use with BedRecord, GFF(2|3)Record.

struct RecordWriter (
RecType
) if (
__traits(hasMember, RecType, "toString")
) {}

Constructors

this
this(string fn, string header)

ctor with filename and header

Members

Functions

write
void write(RecType rec)

Write record to file

writeRecords
void writeRecords(Range range)

Write a range of records to file

Variables

f
File f;

File writer

Meta