dgomezpere/msm_tfm

[vcf_etl%vcf_record] Create a `RecordInfo` class to store the key-value mapping of the INFO field of a vcfpy.record.Record object

Closed this issue · 3 comments

  • The class must extend the collections.OrderedDict class
  • The class must have a property data (with decorators) to fetch the OrderedDict
print(record.info.data)
[out] :
    OrderedDict({
        "key1": value1,
        "key2": value2,
        "keyN": valueN,
    })

collection.OrderedDict is the same as OrderedDict?

How setter is generated? (Same as calls.data)

Related commit: f2d4ce4