Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fractionCoverage20x #124

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/Modeling/CohortFrequency/simple_result_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"popFreqId": "1-55051215-G-GA.AFR"
},
"homozygotes": 9,
"meanDepth": 32.8
"meanDepth": 32.8,
"fractionCoverage20x": 0.9754
},
"subcohortFrequency": [
{
Expand Down Expand Up @@ -143,4 +144,4 @@
}
}
]
}
}
1 change: 1 addition & 0 deletions docs/Modeling/CohortFrequency/simple_result_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ ancillaryResults:
homozygotes: 9 # Number of Homozygotes
qualityMeasures:
meanDepth: 32.8 # Mean depth of coverage
fractionCoverage20x: 0.9754 # Fraction of individuals with at least 20x coverage
subcohortFrequency:
- id: 1-55051215-G-GA.AFR
type: CohortAlleleFrequency
Expand Down
13 changes: 9 additions & 4 deletions schema/cohortAlleleFreq.json
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,11 @@
"type": "object",
"properties": {
"meanDepth": {
"description": "The mean depth of coverage.",
"type": "number"
},
"fractionCoverage20x": {
"description": "The fraction of individuals with at least 20x coverage.",
"type": "number"
},
"qcFilters": {
Expand All @@ -374,19 +379,19 @@
"type": "boolean"
},
"lowComplexityRegion": {
"description": "This flag indicates the variant is found in a low complexity region. These regions were identified with the symmetric DUST algorithm at a score threshold of 30.",
"description": "This flag indicates the variant is found in a low complexity region. These regions were identified with the symmetric DUST algorithm at a score threshold of 30.",
"type": "boolean"
},
"lowConfidenceLossOfFunctionError": {
"description": "Low confidence in predicted Loss of Function (pLoF), where variant is determined by LOFTEE to be unlikely loss of function for a transcript.",
"description": "Low confidence in predicted Loss of Function (pLoF), where variant is determined by LOFTEE to be unlikely loss of function for a transcript.",
"type": "boolean"
},
"lossOfFunctionWarning": {
"description": "A warning provided by LOFTEE to use caution when interpreting the transcript or variant.",
"type": "boolean"
},
"noncodingTranscriptError": {
"description": "Marked in a putative loss of function category by VEP (essential splice, stop-gained, or frameshift) but appears on a non-protein-coding transcript.",
"description": "Marked in a putative loss of function category by VEP (essential splice, stop-gained, or frameshift) but appears on a non-protein-coding transcript.",
"type": "boolean"
},
"heterozygousSkewedAlleleCount": {
Expand All @@ -413,4 +418,4 @@
"cohort"
],
"additionalProperties": false
}
}
12 changes: 9 additions & 3 deletions schema/cohortAlleleFreq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ properties:
type: object
properties:
meanDepth:
description: >-
The mean depth of coverage.
type: number
fractionCoverage20x:
description: >-
The fraction of individuals with at least 20x coverage.
type: number
qcFilters:
type: array
Expand All @@ -281,12 +287,12 @@ properties:
type: boolean
lowComplexityRegion:
description: >-
This flag indicates the variant is found in a low complexity region. These regions were identified
This flag indicates the variant is found in a low complexity region. These regions were identified
with the symmetric DUST algorithm at a score threshold of 30.
type: boolean
lowConfidenceLossOfFunctionError:
description: >-
Low confidence in predicted Loss of Function (pLoF), where variant is determined by LOFTEE
Low confidence in predicted Loss of Function (pLoF), where variant is determined by LOFTEE
to be unlikely loss of function for a transcript.
type: boolean
lossOfFunctionWarning:
Expand All @@ -295,7 +301,7 @@ properties:
type: boolean
noncodingTranscriptError:
description: >-
Marked in a putative loss of function category by VEP (essential splice, stop-gained, or frameshift)
Marked in a putative loss of function category by VEP (essential splice, stop-gained, or frameshift)
but appears on a non-protein-coding transcript.
type: boolean
heterozygousSkewedAlleleCount:
Expand Down
Loading