-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
31 changed files
with
1,935 additions
and
35 deletions.
There are no files selected for viewing
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,25 @@ | ||
// Genomic region annotation with ClinGen information. | ||
|
||
syntax = "proto3"; | ||
|
||
package annonars.regions.clingen; | ||
|
||
import "annonars/genes/base.proto"; | ||
|
||
// Dosage pathogenicity region annotation. | ||
message Region { | ||
// ISCA ID | ||
string isca_id = 1; | ||
// ISCA Region Name | ||
string isca_region_name = 2; | ||
// Genomic locaion. | ||
string genomic_location = 3; | ||
// Haploinsufficiency score. | ||
annonars.genes.base.ClingenDosageScore haploinsufficiency_score = 4; | ||
// Triplosensitivity score. | ||
annonars.genes.base.ClingenDosageScore triplosensitivity_score = 5; | ||
// Haploinsufficiency Disease ID. | ||
optional string haploinsufficiency_disease_id = 6; | ||
// Haploinsufficiency Disease ID. | ||
optional string triplosensitivity_disease_id = 7; | ||
} |
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
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
//! Code generate for protobufs by `prost-build`. | ||
include!(concat!(env!("OUT_DIR"), "/annonars.genes.base.rs")); | ||
include!(concat!(env!("OUT_DIR"), "/annonars.genes.base.serde.rs")); | ||
/// Code generate for protobufs by `prost-build`. | ||
pub mod base { | ||
include!(concat!(env!("OUT_DIR"), "/annonars.genes.base.rs")); | ||
include!(concat!(env!("OUT_DIR"), "/annonars.genes.base.serde.rs")); | ||
} |
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ pub mod functional; | |
pub mod genes; | ||
pub mod gnomad; | ||
pub mod helixmtdb; | ||
pub mod regions; |
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,10 @@ | ||
//! Code generate for protobufs by `prost-build`. | ||
/// Code generate for protobufs by `prost-build`. | ||
pub mod clingen { | ||
include!(concat!(env!("OUT_DIR"), "/annonars.regions.clingen.rs")); | ||
include!(concat!( | ||
env!("OUT_DIR"), | ||
"/annonars.regions.clingen.serde.rs" | ||
)); | ||
} |
Oops, something went wrong.