2020-03-01 20:25:01 +01:00
|
|
|
#lang racket
|
|
|
|
|
2020-03-01 19:05:28 +01:00
|
|
|
;;; dds/rs
|
|
|
|
|
|
|
|
;;; Definitions for working with reaction systems.
|
|
|
|
|
2020-03-01 20:25:01 +01:00
|
|
|
(require "utils.rkt")
|
2020-03-01 20:20:16 +01:00
|
|
|
|
2020-03-01 19:05:28 +01:00
|
|
|
(provide
|
|
|
|
;; Structures
|
2020-03-01 20:41:11 +01:00
|
|
|
(struct-out reaction)
|
2020-03-01 19:05:28 +01:00
|
|
|
;; Functions
|
2020-03-01 20:41:11 +01:00
|
|
|
(contract-out [enabled? (-> reaction? (set/c symbol?) boolean?)]
|
|
|
|
[list-enabled (-> reaction-system/c (set/c species?) (listof symbol?))]
|
|
|
|
[union-products (-> reaction-system/c (listof symbol?) (set/c species?))]
|
|
|
|
[apply-rs (-> reaction-system/c (set/c species?) (set/c species?))]
|
2020-03-01 21:10:01 +01:00
|
|
|
[ht-str-triples->rs (-> (hash/c symbol? (list/c string? string? string?)) reaction-system/c)]
|
|
|
|
[rs->ht-str-triples (-> reaction-system/c (hash/c symbol? (list/c string? string? string?)))])
|
2020-03-01 20:41:11 +01:00
|
|
|
;; Predicates
|
|
|
|
(contract-out [species? (-> any/c boolean?)])
|
|
|
|
;; Contracts
|
|
|
|
(contract-out [reaction-system/c contract?])
|
2020-03-01 20:26:16 +01:00
|
|
|
;; Syntax
|
2020-03-01 21:10:01 +01:00
|
|
|
unorg-rs org-rs)
|
2020-03-01 19:05:28 +01:00
|
|
|
|
|
|
|
;;; =================
|
|
|
|
;;; Basic definitions
|
|
|
|
;;; =================
|
|
|
|
|
|
|
|
;;; A species is a symbol.
|
2020-03-01 20:41:11 +01:00
|
|
|
(define species? symbol?)
|
2020-03-01 19:05:28 +01:00
|
|
|
|
|
|
|
;;; A reaction is a triple of sets, giving the reactants, the
|
|
|
|
;;; inhibitors, and the products, respectively.
|
2020-03-01 20:41:11 +01:00
|
|
|
(struct reaction (reactants inhibitors products) #:transparent)
|
2020-03-01 19:05:28 +01:00
|
|
|
|
|
|
|
;;; A reaction is enabled on a set if all of its reactants are in the
|
|
|
|
;;; set and none of its inhibitors are.
|
|
|
|
(define/match (enabled? r s)
|
|
|
|
[((reaction r i p) s)
|
|
|
|
(and (subset? r s) (set-empty? (set-intersect i s)))])
|
2020-03-01 19:19:58 +01:00
|
|
|
|
|
|
|
;;; A reaction system is a dictionary mapping reaction names to
|
|
|
|
;;; reactions.
|
2020-03-01 20:41:11 +01:00
|
|
|
(define reaction-system/c (hash/c symbol? reaction?))
|
2020-03-01 19:20:24 +01:00
|
|
|
|
|
|
|
;;; Returns the list of reaction names enabled on a given set.
|
|
|
|
(define (list-enabled rs s)
|
|
|
|
(for/list ([(name reaction) (in-hash rs)]
|
|
|
|
#:when (enabled? reaction s))
|
|
|
|
name))
|
2020-03-01 19:47:38 +01:00
|
|
|
|
|
|
|
;;; Returns the union of the product sets of the given reactions in a
|
|
|
|
;;; reaction system.
|
|
|
|
;;;
|
|
|
|
;;; This function can be seen as producing the result of the
|
|
|
|
;;; application of the given reactions to a set. Clearly, it does not
|
|
|
|
;;; check whether the reactions are actually enabled.
|
|
|
|
(define (union-products rs as)
|
|
|
|
(apply set-union
|
2020-03-01 20:41:11 +01:00
|
|
|
(for/list ([a as])
|
|
|
|
(reaction-products (hash-ref rs a)))))
|
2020-03-01 19:51:53 +01:00
|
|
|
|
|
|
|
;;; Applies a reaction system to a set.
|
|
|
|
(define (apply-rs rs s)
|
|
|
|
(let ([as (list-enabled rs s)])
|
|
|
|
(union-products rs as)))
|
2020-03-01 20:20:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
;;; ====================
|
|
|
|
;;; Org-mode interaction
|
|
|
|
;;; ====================
|
|
|
|
|
2020-03-01 20:43:33 +01:00
|
|
|
;;; This section contains some useful primitives for Org-mode
|
|
|
|
;;; interoperability.
|
2020-03-01 20:20:16 +01:00
|
|
|
|
|
|
|
;;; Reads a list of species from a string.
|
|
|
|
(define (read-symbol-list str)
|
2020-03-01 20:41:11 +01:00
|
|
|
(string->any (string-append "(" str ")")))
|
2020-03-01 20:20:16 +01:00
|
|
|
|
|
|
|
;;; Converts a triple of strings to a reaction.
|
|
|
|
(define/match (str-triple->reaction lst)
|
|
|
|
[((list str-reactants str-inhibitors str-products))
|
|
|
|
(reaction (list->set (read-symbol-list str-reactants))
|
|
|
|
(list->set (read-symbol-list str-inhibitors))
|
|
|
|
(list->set (read-symbol-list str-products)))])
|
|
|
|
|
|
|
|
;;; Converts a hash table mapping reaction names to triples of strings
|
|
|
|
;;; to a reaction system.
|
|
|
|
(define (ht-str-triples->rs ht)
|
2020-03-01 20:41:11 +01:00
|
|
|
(for/hash ([(a triple) (in-hash ht)])
|
2020-03-01 20:20:16 +01:00
|
|
|
(values a (str-triple->reaction triple))))
|
2020-03-01 20:26:16 +01:00
|
|
|
|
|
|
|
;;; Chains ht-str-triples->rs with unorg.
|
2020-03-01 20:41:11 +01:00
|
|
|
(define-syntax-rule (unorg-rs str) (ht-str-triples->rs (unorg str)))
|
2020-03-01 21:10:01 +01:00
|
|
|
|
|
|
|
;;; Removes the first and the last symbol of a given string.
|
|
|
|
(define (drop-first-last str)
|
|
|
|
(substring str 1 (- (string-length str) 1)))
|
|
|
|
|
|
|
|
;;; Converts a reaction to a triple of strings.
|
|
|
|
(define/match (reaction->str-triple r)
|
|
|
|
[((reaction r i p))
|
|
|
|
(map (compose drop-first-last any->string set->list)
|
|
|
|
(list r i p))])
|
|
|
|
|
|
|
|
;;; Converts a reaction system to a hash table mapping reaction names
|
|
|
|
;;; to triples of strings.
|
|
|
|
(define (rs->ht-str-triples rs)
|
|
|
|
(for/hash ([(a r) (in-hash rs)])
|
|
|
|
(values a (reaction->str-triple r))))
|
|
|
|
|
|
|
|
;;; A shortcut for rs->ht-str-triples.
|
|
|
|
(define-syntax-rule (org-rs rs) (rs->ht-str-triples rs))
|