1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name bowtie |
---|
6 | version 0.12.7 |
---|
7 | categories science biology |
---|
8 | platforms darwin |
---|
9 | maintainers gmail.com:haroldpimentel |
---|
10 | description Bowtie is an ultrafast, memory-efficient short read aligner. |
---|
11 | long_description Bowtie is an ultrafast, memory-efficient short read aligner. \ |
---|
12 | It aligns short DNA sequences (reads) to the human genome at \ |
---|
13 | a rate of over 25 million 35-bp reads per hour. Bowtie indexes \ |
---|
14 | the genome with a Burrows-Wheeler index to keep its memory footprint \ |
---|
15 | small: typically about 2.2 GB for the human genome (2.9 GB for paired-end). |
---|
16 | homepage http://bowtie-bio.sourceforge.net/ |
---|
17 | master_sites sourceforge:bowtie-bio |
---|
18 | use_zip yes |
---|
19 | distfiles ${distname}-src${extract.suffix} |
---|
20 | checksums md5 2808d61eaf15c9f7138794766c99a561 \ |
---|
21 | sha1 0eb752db072a2da6fc6dac55d2ab825422e994ce \ |
---|
22 | rmd160 7b2210d4526c4818936b729b0e68f4c13a101fc6 |
---|
23 | build.target allall |
---|
24 | use_configure no |
---|
25 | destroot { |
---|
26 | xinstall -m 755 ${worksrcpath}/bowtie ${worksrcpath}/bowtie-debug \ |
---|
27 | ${worksrcpath}/bowtie-build ${worksrcpath}/bowtie-build-debug \ |
---|
28 | ${worksrcpath}/bowtie-inspect ${worksrcpath}/bowtie-inspect-debug \ |
---|
29 | ${destroot}${prefix}/bin |
---|
30 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
31 | xinstall -m 644 -W ${worksrcpath} \ |
---|
32 | AUTHORS COPYING MANUAL NEWS TUTORIAL \ |
---|
33 | VERSION MANUAL.markdown ${destroot}${prefix}/share/doc/${name} |
---|
34 | } |
---|