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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name bwa |
---|
7 | version 0.7.3a |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | license GPL-3 |
---|
11 | |
---|
12 | homepage http://bio-bwa.sourceforge.net |
---|
13 | description BWA is a software package for mapping low-divergent sequences against a large reference genome, such as the human genome. |
---|
14 | long_description BWA is a software package for mapping low-divergent sequences against \ |
---|
15 | a large reference genome, such as the human genome. It consists of three \ |
---|
16 | algorithms: BWA-backtrack, BWA-SW and BWA-MEM. The first algorithm is \ |
---|
17 | designed for Illumina sequence reads up to 100bp, while the rest two \ |
---|
18 | for longer sequences ranged from 70bp to 1Mbp. BWA-MEM and BWA-SW share \ |
---|
19 | similar features such as long-read support and split alignment, but BWA-MEM, \ |
---|
20 | which is the latest, is generally recommended for high-quality queries as it \ |
---|
21 | is faster and more accurate. BWA-MEM also has better performance than \ |
---|
22 | BWA-backtrack for 70-100bp Illumina reads. |
---|
23 | maintainers node99.org:sean openmaintainer |
---|
24 | |
---|
25 | master_sites sourceforge:bio-bwa |
---|
26 | use_bzip2 yes |
---|
27 | checksums rmd160 bf277dd69e0fc186f1a49d63643a3b79f56e3ef9 \ |
---|
28 | sha256 5093e39b83f64b9bb348a86d4fd129abc4797c5b4472bc110e16fc67ab920e56 |
---|
29 | use_configure no |
---|
30 | |
---|
31 | destroot { |
---|
32 | eval xinstall -m 755 ${worksrcpath}/bwa ${destroot}${prefix}/bin |
---|
33 | } |
---|