-
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.
Merge pull request #23 from TheJacksonLaboratory/G3-457-view-similar-…
…genesets-button-broken Reverting change to get_genesets_by_hom_id
- Loading branch information
Showing
10 changed files
with
45 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: geneweaver-legacy-ingress | ||
annotations: | ||
# Set the read and send timeouts for long connections | ||
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600" # 1 hour, adjust as needed | ||
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600" # 1 hour, adjust as needed | ||
# Optional: Prevent connection closing during idle time | ||
nginx.ingress.kubernetes.io/proxy-buffering: "off" # Ensure SSE is not buffered | ||
nginx.ingress.kubernetes.io/keep-alive: "75s" # Adjust keep-alive duration |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ resources: | |
- service.yaml | ||
- external-secrets.yaml | ||
- persistent-volume-claim.yaml | ||
- ingress.yaml |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
CREATE MATERIALIZED VIEW extsrc.geneset2hom AS | ||
SELECT g.gs_id, array_agg(h.hom_id) as hom_id_array | ||
FROM extsrc.homology h | ||
INNER JOIN extsrc.geneset_value gv ON | ||
h.ode_gene_id = gv.ode_gene_id | ||
INNER JOIN production.geneset g ON gv.gs_id = g.gs_id | ||
WHERE g.gs_status NOT LIKE 'de%' | ||
AND hom_id IN | ||
(SELECT DISTINCT hom_id | ||
FROM extsrc.homology) | ||
GROUP BY g.gs_id; | ||
|
||
CREATE INDEX geneset2hom_gs_id_index | ||
ON extsrc.geneset2hom (gs_id); |
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "geneweaver-legacy" | ||
version = "1.4.5" | ||
version = "1.4.6" | ||
description = "" | ||
authors = ["Alexander Berger <[email protected]>"] | ||
readme = "README.md" | ||
|
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