VCFRecord.addFormat

Update FORMAT (sample info; column 9+) * * Templated on data type, calls one of bc_update_format_{int32,float,string,flag}

  1. void addFormat(string tag, T data)
  2. void addFormat(string tag, T[] data)
    struct VCFRecord
    void
    addFormat
    (
    T
    )
    (
    string tag
    ,
    T[] data
    )
    if (
    (
    !isArray!T ||
    isSomeString!T
    )
    &&
    !is(T == immutable(char))
    )

Meta