2018-01-05 17:06:22 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
|
2018-07-13 15:35:27 +02:00
|
|
|
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
2018-12-16 21:52:52 +01:00
|
|
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
2018-12-23 10:58:55 +01:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-01-05 17:06:22 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages chemistry)
|
|
|
|
#:use-module (guix packages)
|
2018-12-16 21:52:52 +01:00
|
|
|
#:use-module (guix utils)
|
2018-01-05 17:06:22 +01:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix download)
|
2018-12-23 10:58:55 +01:00
|
|
|
#:use-module (guix git-download)
|
2018-07-22 16:19:22 +02:00
|
|
|
#:use-module (gnu packages)
|
2018-07-14 04:44:54 +02:00
|
|
|
#:use-module (gnu packages algebra)
|
2018-07-18 20:11:16 +02:00
|
|
|
#:use-module (gnu packages boost)
|
2018-07-13 15:35:27 +02:00
|
|
|
#:use-module (gnu packages compression)
|
2018-07-18 20:11:16 +02:00
|
|
|
#:use-module (gnu packages documentation)
|
|
|
|
#:use-module (gnu packages gl)
|
2018-01-05 17:14:24 +01:00
|
|
|
#:use-module (gnu packages gv)
|
|
|
|
#:use-module (gnu packages maths)
|
2018-07-14 04:44:54 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2018-01-05 17:06:22 +01:00
|
|
|
#:use-module (gnu packages python)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2018-07-18 20:11:16 +02:00
|
|
|
#:use-module (gnu packages qt)
|
2018-07-14 04:44:54 +02:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (guix build-system cmake)
|
2018-07-13 15:35:27 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2018-01-05 17:06:22 +01:00
|
|
|
#:use-module (guix build-system python))
|
|
|
|
|
2018-07-18 20:11:16 +02:00
|
|
|
(define-public avogadro
|
|
|
|
(package
|
|
|
|
(name "avogadro")
|
|
|
|
(version "1.2.0")
|
2018-12-23 10:58:55 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/cryos/avogadro.git")
|
|
|
|
(commit version)))
|
|
|
|
(sha256
|
|
|
|
(base32 "0258py3lkba85qhs5ynancinyym61vlp0zaq9yrfs3hhnhpzv9n2"))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(patches
|
|
|
|
(search-patches "avogadro-eigen3-update.patch"
|
|
|
|
"avogadro-python-eigen-lib.patch"
|
|
|
|
"avogadro-boost148.patch"))))
|
2018-07-18 20:11:16 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
2018-12-16 21:52:52 +01:00
|
|
|
`(#:tests? #f
|
2018-07-18 20:11:16 +02:00
|
|
|
#:configure-flags
|
|
|
|
(list "-DENABLE_GLSL=ON"
|
|
|
|
(string-append "-DPYTHON_LIBRARIES="
|
|
|
|
(assoc-ref %build-inputs "python")
|
|
|
|
"/lib")
|
|
|
|
(string-append "-DPYTHON_INCLUDE_DIRS="
|
|
|
|
(assoc-ref %build-inputs "python")
|
2018-12-16 21:52:52 +01:00
|
|
|
"/include/python"
|
|
|
|
,(version-major+minor
|
|
|
|
(package-version python))))
|
2018-07-18 20:11:16 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-python-lib-path
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; This is necessary to install the Python module in the correct
|
|
|
|
;; directory.
|
|
|
|
(substitute* "libavogadro/src/python/CMakeLists.txt"
|
|
|
|
(("^EXECUTE_PROCESS.*$") "")
|
|
|
|
(("^.*from sys import stdout.*$") "")
|
|
|
|
(("^.*OUTPUT_VARIABLE.*")
|
|
|
|
(string-append "set(PYTHON_LIB_PATH \""
|
|
|
|
(assoc-ref outputs "out")
|
2018-12-16 21:52:52 +01:00
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor
|
|
|
|
(package-version python))
|
|
|
|
"/site-packages\")")))
|
2018-07-18 20:11:16 +02:00
|
|
|
#t))
|
|
|
|
(add-after 'install 'wrap-program
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; Make sure 'avogadro' runs with the correct PYTHONPATH.
|
|
|
|
(let* ((out (assoc-ref outputs "out")))
|
|
|
|
(setenv "PYTHONPATH"
|
|
|
|
(string-append
|
|
|
|
(assoc-ref outputs "out")
|
2018-12-16 21:52:52 +01:00
|
|
|
"/lib/python"
|
|
|
|
,(version-major+minor
|
|
|
|
(package-version python))
|
|
|
|
"/site-packages:"
|
2018-07-18 20:11:16 +02:00
|
|
|
(getenv "PYTHONPATH")))
|
|
|
|
(wrap-program (string-append out "/bin/avogadro")
|
|
|
|
`("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH")))))
|
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("doxygen" ,doxygen)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("boost" ,boost)
|
|
|
|
("eigen" ,eigen)
|
|
|
|
("glew" ,glew)
|
|
|
|
("openbabel" ,openbabel)
|
|
|
|
("python" ,python-2)
|
|
|
|
("python-numpy" ,python2-numpy)
|
|
|
|
("python-pyqt" ,python2-pyqt-4)
|
|
|
|
("python-sip" ,python2-sip)
|
|
|
|
("qt" ,qt-4)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "https://avogadro.cc")
|
|
|
|
(synopsis "Advanced molecule editor")
|
|
|
|
(description
|
|
|
|
"Avogadro is an advanced molecule editor and visualizer designed for use
|
|
|
|
in computational chemistry, molecular modeling, bioinformatics, materials
|
|
|
|
science, and related areas. It offers flexible high quality rendering and a
|
|
|
|
powerful plugin architecture.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2018-01-05 17:06:22 +01:00
|
|
|
(define-public domainfinder
|
|
|
|
(package
|
|
|
|
(name "domainfinder")
|
|
|
|
(version "2.0.5")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://bitbucket.org/khinsen/"
|
|
|
|
"domainfinder/downloads/DomainFinder-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1z26lsyf7xwnzwjvimmbla7ckipx6p734w7y0jk2a2fzci8fkdcr"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("python-mmtk" ,python2-mmtk)))
|
|
|
|
(arguments
|
|
|
|
`(#:python ,python-2
|
|
|
|
;; No test suite
|
|
|
|
#:tests? #f))
|
|
|
|
(home-page "http://dirac.cnrs-orleans.fr/DomainFinder")
|
|
|
|
(synopsis "Analysis of dynamical domains in proteins")
|
|
|
|
(description "DomainFinder is an interactive program for the determination
|
|
|
|
and characterization of dynamical domains in proteins. It can infer dynamical
|
|
|
|
domains by comparing two protein structures, or from normal mode analysis on a
|
|
|
|
single structure. The software is currently not actively maintained and works
|
|
|
|
only with Python 2 and NumPy < 1.9.")
|
|
|
|
(license license:cecill-c)))
|
2018-01-05 17:14:24 +01:00
|
|
|
|
2018-07-13 15:35:27 +02:00
|
|
|
(define-public inchi
|
|
|
|
(package
|
|
|
|
(name "inchi")
|
|
|
|
(version "1.05")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.inchi-trust.org/download/"
|
|
|
|
(string-join (string-split version #\.) "")
|
|
|
|
"/INCHI-1-SRC.zip"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"081pcjx1z5jm23fs1pl2r3bccia0ww8wfkzcjpb7byhn7b513hsa"))
|
|
|
|
(file-name (string-append name "-" version ".zip"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ; no check target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure) ; no configure script
|
|
|
|
(add-before 'build 'chdir-to-build-directory
|
|
|
|
(lambda _ (chdir "INCHI_EXE/inchi-1/gcc") #t))
|
|
|
|
(add-after 'build 'build-library
|
|
|
|
(lambda _
|
|
|
|
(chdir "../../../INCHI_API/libinchi/gcc")
|
|
|
|
(invoke "make")))
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
(doc (string-append out "/share/doc/inchi"))
|
|
|
|
(include-dir (string-append out "/include/inchi"))
|
|
|
|
(lib (string-append out "/lib/inchi"))
|
|
|
|
(inchi-doc (assoc-ref inputs "inchi-doc"))
|
|
|
|
(unzip (string-append (assoc-ref inputs "unzip")
|
|
|
|
"/bin/unzip")))
|
|
|
|
(chdir "../../..")
|
|
|
|
;; Install binary.
|
|
|
|
(with-directory-excursion "INCHI_EXE/bin/Linux"
|
|
|
|
(rename-file "inchi-1" "inchi")
|
|
|
|
(install-file "inchi" bin))
|
|
|
|
;; Install libraries.
|
|
|
|
(with-directory-excursion "INCHI_API/bin/Linux"
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(install-file file lib))
|
|
|
|
(find-files "." "libinchi\\.so\\.1\\.*")))
|
|
|
|
;; Install header files.
|
|
|
|
(with-directory-excursion "INCHI_BASE/src"
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(install-file file include-dir))
|
|
|
|
(find-files "." "\\.h$")))
|
|
|
|
;; Install documentation.
|
|
|
|
(mkdir-p doc)
|
|
|
|
(invoke unzip "-j" "-d" doc inchi-doc)
|
|
|
|
#t))))))
|
|
|
|
(native-inputs
|
|
|
|
`(("unzip" ,unzip)
|
|
|
|
("inchi-doc"
|
|
|
|
,(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.inchi-trust.org/download/"
|
|
|
|
(string-join (string-split version #\.) "")
|
|
|
|
"/INCHI-1-DOC.zip"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1id1qb2y4lwsiw91qr2yqpn6kxbwjwhjk0hb2rwk4fxhdqib6da6"))
|
|
|
|
(file-name (string-append name "-" version ".zip"))))))
|
|
|
|
(home-page "https://www.inchi-trust.org")
|
|
|
|
(synopsis "Utility for manipulating machine-readable chemical structures")
|
|
|
|
(description
|
|
|
|
"The @dfn{InChI} (IUPAC International Chemical Identifier) algorithm turns
|
|
|
|
chemical structures into machine-readable strings of information. InChIs are
|
|
|
|
unique to the compound they describe and can encode absolute stereochemistry
|
|
|
|
making chemicals and chemistry machine-readable and discoverable. A simple
|
|
|
|
analogy is that InChI is the bar-code for chemistry and chemical structures.")
|
|
|
|
(license (license:non-copyleft
|
|
|
|
"file://LICENCE"
|
|
|
|
"See LICENCE in the distribution."))))
|
|
|
|
|
2018-01-05 17:14:24 +01:00
|
|
|
(define with-numpy-1.8
|
|
|
|
(package-input-rewriting `((,python2-numpy . ,python2-numpy-1.8))))
|
|
|
|
|
|
|
|
(define-public nmoldyn
|
|
|
|
(package
|
|
|
|
(name "nmoldyn")
|
|
|
|
(version "3.0.11")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://bitbucket.org/khinsen/"
|
|
|
|
"nmoldyn3/downloads/nMOLDYN-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1mvmz3lkr217kdrd8cvdr1d82y58wp1403c9rnd943mijgq8xb5a"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("python-matplotlib" ,(with-numpy-1.8 python2-matplotlib))
|
2018-03-16 16:50:14 +01:00
|
|
|
("python-scientific" ,python2-scientific)
|
|
|
|
("netcdf" ,netcdf)
|
2018-01-05 17:14:24 +01:00
|
|
|
("gv" ,gv)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-mmtk" ,python2-mmtk)))
|
|
|
|
(arguments
|
|
|
|
`(#:python ,python-2
|
|
|
|
#:tests? #f ; No test suite
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'build 'create-linux2-directory
|
|
|
|
(lambda _
|
|
|
|
(mkdir-p "nMOLDYN/linux2")))
|
|
|
|
(add-before 'build 'change-PDF-viewer
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "nMOLDYN/Preferences.py"
|
|
|
|
;; Set the paths for external executables, substituting
|
|
|
|
;; gv for acroread.
|
|
|
|
;; There is also vmd_path, but VMD is not free software
|
|
|
|
;; and Guix contains currently no free molecular viewer that
|
|
|
|
;; could be substituted.
|
|
|
|
(("PREFERENCES\\['acroread_path'\\] = ''")
|
|
|
|
(format "PREFERENCES['acroread_path'] = '~a'"
|
|
|
|
(which "gv")))
|
|
|
|
(("PREFERENCES\\['ncdump_path'\\] = ''")
|
|
|
|
(format "PREFERENCES['ncdump_path'] = '~a'"
|
|
|
|
(which "ncdump")))
|
|
|
|
(("PREFERENCES\\['ncgen_path'\\] = ''")
|
|
|
|
(format "PREFERENCES['ncgen_path'] = '~a'"
|
|
|
|
(which "ncgen3")))
|
|
|
|
(("PREFERENCES\\['task_manager_path'\\] = ''")
|
|
|
|
(format "PREFERENCES['task_manager_path'] = '~a'"
|
|
|
|
(which "task_manager")))
|
|
|
|
;; Show documentation as PDF
|
|
|
|
(("PREFERENCES\\['documentation_style'\\] = 'html'")
|
|
|
|
"PREFERENCES['documentation_style'] = 'pdf'") ))))))
|
|
|
|
(home-page "http://dirac.cnrs-orleans.fr/nMOLDYN/")
|
|
|
|
(synopsis "Analysis software for Molecular Dynamics trajectories")
|
|
|
|
(description "nMOLDYN is an interactive analysis program for Molecular Dynamics
|
|
|
|
simulations. It is especially designed for the computation and decomposition of
|
|
|
|
neutron scattering spectra, but also computes other quantities. The software
|
|
|
|
is currently not actively maintained and works only with Python 2 and
|
|
|
|
NumPy < 1.9.")
|
|
|
|
(license license:cecill)))
|
2018-07-14 04:44:54 +02:00
|
|
|
|
|
|
|
(define-public openbabel
|
|
|
|
(package
|
|
|
|
(name "openbabel")
|
|
|
|
(version "2.4.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/" name "/" name "/"
|
|
|
|
version "/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-07-21 18:47:34 +02:00
|
|
|
"1z3d6xm70dpfikhwdnbzc66j2l49vq105ch041wivrfz5ic3ch90"))
|
|
|
|
(patches
|
|
|
|
(search-patches "openbabel-fix-crash-on-nwchem-output.patch"))))
|
2018-07-14 04:44:54 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list "-DOPENBABEL_USE_SYSTEM_INCHI=ON"
|
|
|
|
(string-append "-DINCHI_LIBRARY="
|
|
|
|
(assoc-ref %build-inputs "inchi")
|
|
|
|
"/lib/inchi/libinchi.so.1")
|
|
|
|
(string-append "-DINCHI_INCLUDE_DIR="
|
|
|
|
(assoc-ref %build-inputs "inchi") "/include/inchi"))
|
|
|
|
#:test-target "test"))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("eigen" ,eigen)
|
|
|
|
("inchi" ,inchi)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(home-page "http://openbabel.org/wiki/Main_Page")
|
|
|
|
(synopsis "Chemistry data manipulation toolbox")
|
|
|
|
(description
|
|
|
|
"Open Babel is a chemical toolbox designed to speak the many languages of
|
|
|
|
chemical data. It's a collaborative project allowing anyone to search, convert,
|
|
|
|
analyze, or store data from molecular modeling, chemistry, solid-state
|
|
|
|
materials, biochemistry, or related areas.")
|
|
|
|
(license license:gpl2)))
|