VCFRecord.addInfo

Update INFO (pan-sample info; column 8) * * Add a tag:value to the INFO column * NOTE: tag must already exist in the header * * Templated on data type, calls one of bcf_update_info_{int32,float,string,flag} * Both singletons and arrays are supported.

  1. void addInfo(string tag, T data)
    struct VCFRecord
    void
    addInfo
    (
    T
    )
    (
    string tag
    ,)
    if (
    isSomeString!T ||
    (
    (
    isIntegral!T ||
    isFloatingPoint!T
    ||
    isBoolean!T
    )
    &&
    !isArray!T
    )
    )
  2. void addInfo(string tag, T data)

Meta