aboutsummaryrefslogtreecommitdiff
path: root/gn/services
diff options
context:
space:
mode:
authorEfraim Flashner2020-06-16 15:52:17 +0300
committerEfraim Flashner2020-06-16 15:52:17 +0300
commit2c0212ab6da6c2fb1214a6b0aebbea0669a0be1e (patch)
tree6473486d46a3b1d7c8f99a4a4af917ee6933077f /gn/services
parent9ca77d2492781ff68bdfd819bb3dfc70ace9e2c1 (diff)
downloadguix-bioinformatics-2c0212ab6da6c2fb1214a6b0aebbea0669a0be1e.tar.gz
WIP singlecell container
Diffstat (limited to 'gn/services')
-rw-r--r--gn/services/singlecell-container.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/services/singlecell-container.scm b/gn/services/singlecell-container.scm
new file mode 100644
index 0000000..f3df6b6
--- /dev/null
+++ b/gn/services/singlecell-container.scm
@@ -0,0 +1,27 @@
+;; Not ready for deployment yet
+;; Warning: Error in <Anonymous>: error in evaluating the argument 'object' in selecting a method for function 'summary':
+
+(define-module (gn services singlecell-container))
+
+(use-modules (gnu)
+ (gn packages bioinformatics)
+ (gn services rshiny))
+
+(operating-system
+ (host-name "singlecell")
+ (timezone "Etc/UTC")
+ (locale "en_US.utf8")
+
+ (bootloader (bootloader-configuration
+ (bootloader grub-bootloader)
+ (target "does-not-matter")))
+ (file-systems %base-file-systems)
+ ;; No firmware for VMs.
+ (firmware '())
+ ;; We only need a few packages inside the container.
+ (packages '())
+
+ (services (list (service rshiny-service-type
+ (rshiny-configuration
+ (package singlecellrshiny)
+ (binary "singlecellrshiny"))))))