VCFRecord.add

add INFO or FORMAT key:value pairs to a record add a single datapoint OR vector of values, OR, values to each sample (if lineType == FORMAT)

struct VCFRecord
void
add
(
T
)
(
const(char)[] tag
,)
if (
(
lineType == HeaderRecordType.Info ||
)
&&
(
isIntegral!T ||
isIntegral!(ElementType!T)
||
isFloatingPoint!T
||
isFloatingPoint!(ElementType!T)
||
isSomeString!T
||
isSomeString!(ElementType!T)
||
isBoolean!T
||
isBoolean!(ElementType!T)
)
)

Meta