mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: Add maffilter.
* gnu/packages/bioinformatics.scm (maffilter): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
7c75228c8b
commit
2babf3d7d7
1 changed files with 37 additions and 0 deletions
|
@ -6046,6 +6046,43 @@ (define-public macs
|
|||
sequencing tag position and orientation.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public maffilter
|
||||
(package
|
||||
(name "maffilter")
|
||||
(version "1.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jydu/maffilter")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "196c16qw82niqqyzi7j1ga1n0zmir73bm26kg04m0i5aq2cpa0ml"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments (list #:tests? #false)) ;there are none
|
||||
(inputs
|
||||
(list boost
|
||||
bpp-core
|
||||
bpp-phyl
|
||||
bpp-phyl-omics
|
||||
bpp-seq
|
||||
bpp-seq-omics
|
||||
zlib))
|
||||
(home-page "https://jydu.github.io/maffilter/")
|
||||
(synopsis "Multiple alignment format file processor")
|
||||
(description
|
||||
"MafFilter is a program dedicated to the analysis of genome alignments.
|
||||
It parses and manipulates @acronym{MAF, multiple alignment format} files as
|
||||
well as more simple fasta files. This package can be used to design a
|
||||
pipeline as a series of consecutive filters, each performing a dedicated
|
||||
analysis. Many of the filters are available, from alignment cleaning to
|
||||
phylogeny reconstruction and population genetics analysis. Despite various
|
||||
filtering options and format conversion tools, MafFilter can compute a wide
|
||||
range of statistics (phylogenetic trees, nucleotide diversity, inferrence of
|
||||
selection, etc.).")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public mafft
|
||||
(package
|
||||
(name "mafft")
|
||||
|
|
Loading…
Reference in a new issue