diff --git a/science/cufflinks/Portfile b/science/cufflinks/Portfile
index 3d604d4350..2f4810ee8f 100644
a
|
b
|
|
| 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 | |
1 | 3 | PortSystem 1.0 |
| 4 | PortGroup github 1.0 |
2 | 5 | |
3 | | name cufflinks |
4 | | version 0.9.3 |
| 6 | github.setup cole-trapnell-lab cufflinks 2.2.1 v |
5 | 7 | categories science biology |
6 | 8 | platforms darwin |
7 | 9 | maintainers gmail.com:haroldpimentel |
8 | | license Boost |
| 10 | license Boost-1 |
9 | 11 | |
10 | 12 | description Cufflinks assembles transcripts, estimates their abundances,\ |
11 | 13 | and tests for differential expression and regulation in RNA-Seq samples. |
… |
… |
long_description Cufflinks assembles transcripts, estimates their abundances, |
17 | 19 | Cufflinks then estimates the relative abundances of these \ |
18 | 20 | transcripts based on how many reads support each one. |
19 | 21 | |
20 | | homepage http://cufflinks.cbcb.umd.edu/ |
21 | | master_sites ${homepage}downloads |
| 22 | homepage http://cole-trapnell-lab.github.io/cufflinks/ |
| 23 | master_sites ${homepage}assets/downloads/ |
22 | 24 | |
23 | | checksums sha1 f6c28d8f98569f8d1eae72ff050ce7d2d06bfba4\ |
24 | | rmd160 b9b3b8ec322e79e0e6f2b4b2f23de27b58ec44f4 |
| 25 | checksums rmd160 6378571ecb06971d1dff5b6ef81a55b36a8be498 \ |
| 26 | sha256 e8316b66177914f14b3a0c317e436d386a46c4c212ca1b2326f89f8a2e08d5ae |
25 | 27 | |
26 | | depends_lib port:zlib \ |
| 28 | depends_lib port:boost \ |
| 29 | port:eigen3 \ |
27 | 30 | port:samtools \ |
28 | | port:boost |
| 31 | port:zlib |
| 32 | |
| 33 | configure.args --with-bam=${prefix} \ |
| 34 | --with-boost=${prefix} \ |
| 35 | --with-eigen=${prefix} \ |
| 36 | --with-zlib=${prefix} |
29 | 37 | |
30 | | # samtools is not universal |
31 | | universal_variant no |
| 38 | configure.cppflags-append -isystem${prefix}/include/eigen3 |
32 | 39 | |
33 | 40 | post-destroot { |
34 | | xinstall -d ${destroot}${prefix}/share/doc/${name} |
| 41 | xinstall -d ${destroot}${prefix}/share/doc/${subport} |
35 | 42 | xinstall -m 644 -W ${worksrcpath} \ |
36 | 43 | AUTHORS \ |
37 | 44 | LICENSE \ |