diff options
author | Frederick Muriuki Muriithi | 2024-07-15 12:03:19 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-04-03 12:59:35 -0500 |
commit | 9bf4ca8a295d67791e04716a07571de486b097c1 (patch) | |
tree | 1edd510224ea39a369bd931540a8cc303c8ac5ca | |
parent | 1773c04da34b2532135e18d8a50f46a5340bb075 (diff) | |
download | gn-machines-production-container.tar.gz |
Run script to make non-human data publicproduction-container
-rw-r--r-- | genenetwork/services/genenetwork.scm | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/genenetwork/services/genenetwork.scm b/genenetwork/services/genenetwork.scm index a403f21..1815a8e 100644 --- a/genenetwork/services/genenetwork.scm +++ b/genenetwork/services/genenetwork.scm @@ -254,6 +254,33 @@ (chmod file #o644)) (find-files #$xapian-directory))))))))) +(define (make-non-human-data-public-cron-gexp config) + (match-record config <genenetwork-configuration> + (gn-auth sql-uri auth-db) + (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + + (setenv "PYTHONPATH" + (string-append + #$(file-append gn-auth + "/lib/python" + (python-version (package-version python)) + "/site-packages") + ":" + #$(profile + (content (package->development-manifest gn-auth)) + (allow-collisions? #t)) + "/lib/python" + #$(python-version (package-version python)) + "/site-packages")) + + (invoke #$(file-append python "/bin/python3") + "-m" + "scripts.batch_assign_data_to_default_admin" + #$auth-db + #$sql-uri))))) + (define (genenetwork-activation config) (match-record config <genenetwork-configuration> (gn2-secrets gn3-secrets gn-auth-secrets auth-db llm-db-path genotype-files gn-tmpdir gn-doc-git-checkout gn2-sessions-dir) @@ -611,7 +638,12 @@ a @code{<genenetwork-configuration>} record." (list #~(job '(next-hour) #$(program-file "build-xapian-index-cron-gexp" (build-xapian-index-cron-gexp config)) - #:user "root"))) + #:user "root") + #~(job '(next-minute (range 0 60 15)) + #$(program-file "make-non-human-data-public-cron-gexp" + (make-non-human-data-public-cron-gexp config)) + #:user "gunicorn-gn-auth") + )) (define (gn-guile-gexp gn-guile-port) (with-imported-modules '((guix build utils)) |