Skip to content
Open
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
2 changes: 1 addition & 1 deletion backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ gen-api-schema:
.PHONY: protos-build
protos-build:
PYTHONPATH=. \
protoc \
pipenv run python -m grpc_tools.protoc \
-Iprotos \
--python_out=. \
--mypy_out=. \
Expand Down
3 changes: 2 additions & 1 deletion backend/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ flake8-pyproject = "*"
freezegun = "~=1.5"
isort = "~=7.0"
jsonmatch = "*"
mypy-protobuf = "*"
openpyxl = "~=3.1"
parameterized = "~=0.9.0"
protolint-bin = "*"
Expand All @@ -96,6 +95,8 @@ watchdog = "*"
werkzeug = "~=3.1.6"
uritemplate = "*"
django-types = "*"
grpcio-tools = "==1.68.1"
mypy-protobuf = "==3.6.0"

[ldap-packages]
# Dependencies for enabling LDAP support. You will need the system library
Expand Down
143 changes: 136 additions & 7 deletions backend/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions backend/protos/seqvars/protos/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,14 @@ enum Consequence {
CONSEQUENCE_RARE_AMINO_ACID_VARIANT = 45;
// Protein altering variant
CONSEQUENCE_PROTEIN_ALTERING_VARIANT = 46;
// Inframe deletion
CONSEQUENCE_INFRAME_DELETION = 49;
// Inframe insertion
CONSEQUENCE_INFRAME_INSERTION = 50;
// Selenocysteine gain
CONSEQUENCE_SELENOCYSTEINE_GAIN = 51;
// Selenocysteine loss
CONSEQUENCE_SELENOCYSTEINE_LOSS = 52;
/*
* low impact
*/
Expand All @@ -235,6 +243,8 @@ enum Consequence {
CONSEQUENCE_STOP_RETAINED_VARIANT = 22;
// Synonymous variant.
CONSEQUENCE_SYNONYMOUS_VARIANT = 23;
// Incomplete terminal codon variant
CONSEQUENCE_INCOMPLETE_TERMINAL_CODON_VARIANT = 53;
/*
* modifier
*/
Expand All @@ -246,14 +256,20 @@ enum Consequence {
CONSEQUENCE_FIVE_PRIME_UTR_EXON_VARIANT = 26;
// 5' UTR intron variant.
CONSEQUENCE_FIVE_PRIME_UTR_INTRON_VARIANT = 27;
// 5' UTR variant.
CONSEQUENCE_FIVE_PRIME_UTR_VARIANT = 54;
// 3' UTR exon variant.
CONSEQUENCE_THREE_PRIME_UTR_EXON_VARIANT = 28;
// 3' UTR intron variant.
CONSEQUENCE_THREE_PRIME_UTR_INTRON_VARIANT = 29;
// 3' UTR variant.
CONSEQUENCE_THREE_PRIME_UTR_VARIANT = 55;
// Non-coding transcript exon variant.
CONSEQUENCE_NON_CODING_TRANSCRIPT_EXON_VARIANT = 30;
// Non-coding transcript intron variant.
CONSEQUENCE_NON_CODING_TRANSCRIPT_INTRON_VARIANT = 31;
// Non-coding transcript variant.
CONSEQUENCE_NON_CODING_TRANSCRIPT_VARIANT = 56;
// Coding transcript intron variant.
CONSEQUENCE_CODING_TRANSCRIPT_INTRON_VARIANT = 48;
// Upstream gene variant.
Expand Down
Loading
Loading