-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: adding support for JSONL from v0.15 clinvar-this (#454)
- Loading branch information
Showing
27 changed files
with
12,981 additions
and
416 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Protocol buffers for types for class-by-freq tool. | ||
|
||
syntax = "proto3"; | ||
|
||
package annonars.clinvar_data.class_by_freq; | ||
|
||
// Enumeration for coarse-grain classification. | ||
enum CoarseClinicalSignificance { | ||
// unspecified coarse clinical significance | ||
COARSE_CLINICAL_SIGNIFICANCE_UNSPECIFIED = 0; | ||
// Corresponds to "benign". | ||
COARSE_CLINICAL_SIGNIFICANCE_BENIGN = 1; | ||
// Corresponds to "uncertain". | ||
COARSE_CLINICAL_SIGNIFICANCE_UNCERTAIN = 2; | ||
// Corresponds to "pathogenic". | ||
COARSE_CLINICAL_SIGNIFICANCE_PATHOGENIC = 3; | ||
} | ||
|
||
// Output record. | ||
message GeneCoarseClinsigFrequencyCounts { | ||
// The gene HGNC ID. | ||
string hgnc_id = 1; | ||
// The counts for (likely) pathogenic. | ||
repeated uint32 pathogenic_counts = 2; | ||
// The counts for uncertain significance. | ||
repeated uint32 uncertain_counts = 3; | ||
// The counts for (likely) benign. | ||
repeated uint32 benign_counts = 4; | ||
} |
Oops, something went wrong.