~ruther/guix-local

50ece4e78fb3f012a10db54a12b08633b1000822 — Kjartan Oli Agustsson 1 year, 1 month ago 1a5fa2c
gnu: crossmap: Run guix style

* gnu/packages/bioinformatics.scm (crossmap): Run guix style.

Change-Id: I56a0ba0e7f5fd24e02a5a769efa7b7e6bda5603b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 16 insertions(+), 21 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +16 -21
@@ 6207,28 6207,23 @@ time.")
  (package
    (name "crossmap")
    (version "0.6.1")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "CrossMap" version))
              (sha256
               (base32
                "0hqminh5wn1p3x481jbyc7gmncp5xc196hpvki7k25vzbryhwcix"))
              (modules '((guix build utils)))
              (snippet
               '(begin
                  ;; Delete compiled Python files.
                  (for-each delete-file (find-files "." "\\.pyc$"))
                  (delete-file-recursively ".eggs")))))
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "CrossMap" version))
       (sha256
        (base32 "0hqminh5wn1p3x481jbyc7gmncp5xc196hpvki7k25vzbryhwcix"))
       (modules '((guix build utils)))
       (snippet '(begin
                   ;; Delete compiled Python files.
                   (for-each delete-file
                             (find-files "." "\\.pyc$"))
                   (delete-file-recursively ".eggs")))))
    (build-system pyproject-build-system)
    (inputs
     (list python-bx-python python-numpy python-pybigwig python-pysam
           zlib))
    (native-inputs
     (list python-cython
           python-nose
           python-pyparsing
           python-setuptools
           python-wheel))
    (inputs (list python-bx-python python-numpy python-pybigwig python-pysam
                  zlib))
    (native-inputs (list python-cython python-nose python-pyparsing
                         python-setuptools python-wheel))
    (home-page "https://crossmap.sourceforge.net/")
    (synopsis "Convert genome coordinates between assemblies")
    (description