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 bowtie2 |
---|
7 | version 2.1.0 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | license GPL-3 |
---|
11 | |
---|
12 | homepage http://bowtie-bio.sourceforge.net/bowtie2 |
---|
13 | description Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. |
---|
14 | long_description Bowtie 2 is an ultrafast and memory-efficient tool for aligning \ |
---|
15 | sequencing reads to long reference sequences. It is particularly \ |
---|
16 | good at aligning reads of about 50 up to 100s or 1,000s of characters, \ |
---|
17 | and particularly good at aligning to relatively long (e.g. mammalian) \ |
---|
18 | genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory \ |
---|
19 | footprint small: for the human genome, its memory footprint is typically \ |
---|
20 | around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. |
---|
21 | maintainers node99.org:sean openmaintainer |
---|
22 | |
---|
23 | master_sites sourceforge:project/bowtie-bio/bowtie2/${version} |
---|
24 | distname ${name}-${version}-source |
---|
25 | use_zip yes |
---|
26 | worksrcdir ${name}-${version} |
---|
27 | checksums rmd160 8c9caecffae919c7ee53a774ef1aabe60f9f04ba \ |
---|
28 | sha256 90a9d3a6bd19ddc3a8f90b935c6a2288478572de2ad4039b29f91016b95ef4b0 |
---|
29 | use_configure no |
---|
30 | build.args-append CC=${configure.cc} \ |
---|
31 | CXX=${configure.cxx} \ |
---|
32 | CPP=${configure.cpp} |
---|
33 | |
---|
34 | destroot { |
---|
35 | xinstall -W ${worksrcpath} bowtie2 bowtie2-align bowtie2-build bowtie2-inspect ${destroot}${prefix}/bin |
---|
36 | } |
---|