Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

40 lines
815 B
Nix

{ chemistry, ... }:
let
inherit(chemistry) compound;
in
{
dna = {
section = "Substances";
text = {
deu = {
tex = "${compound.format "Des|oxy||ribo||nuklein||säure"}";
};
};
description = {
deu = ''
eine aus ${compound.format "Des|oxy||ribo||nukleotiden"} aufgebaute ${compound.format "Nuklein||säure"}
'';
};
data = {
kind = "Chemical";
short = "DNA";
};
};
rna = {
section = "Substances";
text = {
deu = {
tex = "${compound.format "Ribo||nuklein||säure"}";
};
};
description = {
deu = ''
eine aus ${compound.format "Ribo||nukleotiden"} aufgebaute ${compound.format "Nuklein||säure"}
'';
};
data = {
kind = "Chemical";
short = "RNA";
};
};
}