Skip to content

Commit

Permalink
feat(study_locus_overlap): remove statistics after conditioning from …
Browse files Browse the repository at this point in the history
…schema
  • Loading branch information
ireneisdoomed committed Jan 4, 2024
1 parent f2c6897 commit 9b81fef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 66 deletions.
48 changes: 0 additions & 48 deletions src/otg/assets/schemas/study_locus_overlap.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,6 @@
"nullable": true,
"type": "integer"
},
{
"metadata": {},
"name": "pValueMantissaConditioned",
"nullable": true,
"type": "float"
},
{
"metadata": {},
"name": "pValueExponentConditioned",
"nullable": true,
"type": "integer"
},
{
"metadata": {},
"name": "beta",
Expand All @@ -92,18 +80,6 @@
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "betaConditioned",
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "standardErrorConditioned",
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "r2Overall",
Expand Down Expand Up @@ -166,18 +142,6 @@
"nullable": true,
"type": "integer"
},
{
"metadata": {},
"name": "pValueMantissaConditioned",
"nullable": true,
"type": "float"
},
{
"metadata": {},
"name": "pValueExponentConditioned",
"nullable": true,
"type": "integer"
},
{
"metadata": {},
"name": "beta",
Expand All @@ -190,18 +154,6 @@
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "betaConditioned",
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "standardErrorConditioned",
"nullable": true,
"type": "double"
},
{
"metadata": {},
"name": "r2Overall",
Expand Down
18 changes: 0 additions & 18 deletions tests/dataset/test_study_locus_overlap.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,28 +93,10 @@ def test__find_overlaps(
t.StructField(
"pValueExponent", t.IntegerType(), nullable=True
),
t.StructField(
"pValueMantissaConditioned",
t.FloatType(),
nullable=True,
),
t.StructField(
"pValueExponentConditioned",
t.IntegerType(),
nullable=True,
),
t.StructField("beta", t.DoubleType(), nullable=True),
t.StructField(
"standardError", t.DoubleType(), nullable=True
),
t.StructField(
"betaConditioned", t.DoubleType(), nullable=True
),
t.StructField(
"standardErrorConditioned",
t.DoubleType(),
nullable=True,
),
t.StructField("r2Overall", t.DoubleType(), nullable=True),
]
)
Expand Down

0 comments on commit 9b81fef

Please sign in to comment.