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 tagType == FORMAT)

class VCFRecord
void
add
(
string tagType
T
)
(
const(char)[] tag
,)
if (
(
tagType == "INFO" ||
tagType == "FORMAT"
)
&&
(
isIntegral!T ||
isIntegral!(ElementType!T)
||
isFloatingPoint!T
||
isFloatingPoint!(ElementType!T)
||
isSomeString!T
||
isSomeString!(ElementType!T)
||
isBoolean!T
||
isBoolean!(ElementType!T)
)
)

Meta