i2b2 on Genomics Data
Space shortcuts
Space Tools

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are two value metadata types that accompany the two variant concepts, SNP and indel. The SNP variant concept has the datatype = GENETIC_VARIANT_SNP and indel variant concept has the datatype = GENETIC_VARIANT_INDEL. The concept code of each type is contained in the TestID tag.SNP:

Code Block
languagexml
themeRDark
titleSNP
<?xml version="1.0"?>

...


<ValueMetadata>

...


                <Version>3.03</Version>

...


                <CreationDateTime>01/28/2016</CreationDateTime>

...


                <TestID>SO:0001483</TestID>

...


                <TestName>SNP</TestName>

...


                <DataType>GENETIC_VARIANT_SNP</DataType>

...


                <Oktousevalues />

...


                <MaxStringLength>30</MaxStringLength>

...


                <EnumValues />

...

                <UnitValues>
                                <NormalUnits/>
                </UnitValues>

                <UnitValues>
                                <NormalUnits/>
                </UnitValues>
</ValueMetadata>

 

...

Code Block
languagexml
themeRDark
titleindel
<?xml version="1.0"?>

...


<ValueMetadata>

...


                <Version>3.03</Version>

...


                <CreationDateTime>01/28/2016</CreationDateTime>

...


                <TestID>SO:1000032</TestID>

...


                <TestName>indel</TestName>

...


                <DataType>GENETIC_VARIANT_INDEL</DataType>

...


                <Oktousevalues />

...


                <MaxStringLength>30</MaxStringLength>

...


                <EnumValues />

...

                <UnitValues>
                                <NormalUnits/>
                </UnitValues>

                <UnitValues>
                                <NormalUnits/>
                </UnitValues>
</ValueMetadata>

 

Sample scripts to create and insert Genomics data in metadata_genomics table can be found inside the package in “Scripts for Sample Data” folder.

...