gnu: cd-hit: Support longer sequences.
* gnu/packages/bioinformatics.scm (cd-hit)[arguments]: Pass MAX_SEQ to make flags.
This commit is contained in:
parent
237ee6f2b2
commit
3b296475bf
1 changed files with 3 additions and 1 deletions
|
@ -1770,7 +1770,9 @@ high-throughput sequencing data – with an emphasis on simplicity.")
|
||||||
`(#:tests? #f ; there are no tests
|
`(#:tests? #f ; there are no tests
|
||||||
#:make-flags
|
#:make-flags
|
||||||
;; Executables are copied directly to the PREFIX.
|
;; Executables are copied directly to the PREFIX.
|
||||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out") "/bin"))
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out") "/bin")
|
||||||
|
;; Support longer sequences (e.g. Pacbio sequences)
|
||||||
|
"MAX_SEQ=60000000")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; No "configure" script
|
;; No "configure" script
|
||||||
|
|
Reference in a new issue