Ticket #38398: Portfile

File Portfile, 1.4 KB (added by sean@…, 12 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4
5name                bwa
6version             0.7.3a
7categories          science
8platforms           darwin
9maintainers         openmaintainer node99.org:sean
10
11homepage            http://bio-bwa.sourceforge.net
12description         BWA is a software package for mapping low-divergent sequences against a large reference genome, such as the human genome.
13long_description    BWA is a software package for mapping low-divergent sequences against a large reference genome, such as the human genome. It consists of three algorithms: BWA-backtrack, BWA-SW and BWA-MEM. The first algorithm is designed for Illumina sequence reads up to 100bp, while the rest two for longer sequences ranged from 70bp to 1Mbp. BWA-MEM and BWA-SW share similar features such as long-read support and split alignment, but BWA-MEM, which is the latest, is generally recommended for high-quality queries as it is faster and more accurate. BWA-MEM also has better performance than BWA-backtrack for 70-100bp Illumina reads.
14
15master_sites        sourceforge:bio-bwa
16use_bzip2           yes
17checksums           rmd160 bf277dd69e0fc186f1a49d63643a3b79f56e3ef9 \
18                    sha256 5093e39b83f64b9bb348a86d4fd129abc4797c5b4472bc110e16fc67ab920e56
19use_configure       no
20
21destroot {
22    eval xinstall -m 755 ${worksrcpath}/bwa ${destroot}${prefix}/bin
23}