[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/15: gnu: samblaster: Simplify.
From: |
guix-commits |
Subject: |
05/15: gnu: samblaster: Simplify. |
Date: |
Fri, 12 May 2023 17:25:43 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 6331e41cde07e26a25e45dcfd55f60e654de678b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri May 12 22:29:38 2023 +0200
gnu: samblaster: Simplify.
* gnu/packages/bioinformatics.scm (samblaster): Fix indentation.
[arguments]: Use G-expression; drop trailing #T from 'install phase.
[description]: Use double spacing between all sentences.
---
gnu/packages/bioinformatics.scm | 35 +++++++++++++++++------------------
1 file changed, 17 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 68ba0b15fa..2eb1645691 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17768,31 +17768,30 @@ length of a short-read sequencing alignment.")
(name "samblaster")
(version "0.1.24")
(source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/GregoryFaust/samblaster")
- (commit (string-append "v." version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0iv2ddfw8363vb2x8gr3p8g88whb6mb9m0pf71i2cqsbv6jghap7"))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/GregoryFaust/samblaster")
+ (commit (string-append "v." version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0iv2ddfw8363vb2x8gr3p8g88whb6mb9m0pf71i2cqsbv6jghap7"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; there are none
- #:phases
- (modify-phases %standard-phases
- (delete 'configure) ; There is no configure phase.
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (install-file "samblaster"
- (string-append (assoc-ref outputs "out") "/bin"))
- #t)))))
+ (list
+ #:tests? #f ; there are none
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure) ;There is no configure phase.
+ (replace 'install
+ (lambda _
+ (install-file "samblaster" (string-append #$output "/bin")))))))
(home-page "https://github.com/GregoryFaust/samblaster")
(synopsis "Mark duplicates in paired-end SAM files")
(description "Samblaster is a fast and flexible program for marking
duplicates in read-id grouped paired-end SAM files. It can also optionally
output discordant read pairs and/or split read mappings to separate SAM files,
-and/or unmapped/clipped reads to a separate FASTQ file. When marking
+and/or unmapped/clipped reads to a separate FASTQ file. When marking
duplicates, samblaster will require approximately 20MB of memory per 1M read
pairs.")
(license license:expat)))
- 06/15: gnu: samblaster: Update to 0.1.26., (continued)
- 06/15: gnu: samblaster: Update to 0.1.26., guix-commits, 2023/05/12
- 04/15: gnu: methyldackel: Update to 0.6.1., guix-commits, 2023/05/12
- 07/15: gnu: multichoose: Clean up., guix-commits, 2023/05/12
- 08/15: gnu: arriba: Use SEARCH-INPUT-FILE and -DIRECTORY., guix-commits, 2023/05/12
- 11/15: gnu: python-seaborn: Simplify by using pyproject-build-system., guix-commits, 2023/05/12
- 12/15: gnu: python-pyproject-metadata: Simplify by using pyproject-build-system., guix-commits, 2023/05/12
- 14/15: gnu: python-orjson: Reuse phases from pyproject-build-system., guix-commits, 2023/05/12
- 09/15: gnu: jamm: Use G-expression., guix-commits, 2023/05/12
- 10/15: gnu: shrinkwrap: Use pyproject-build-system., guix-commits, 2023/05/12
- 15/15: gnu: python-orjson: Fix version string of Python module., guix-commits, 2023/05/12
- 05/15: gnu: samblaster: Simplify.,
guix-commits <=
- 13/15: gnu: python-canonicaljson: Use pyproject-build-system., guix-commits, 2023/05/12