1 | # $Id: Portfile 72789 2010-10-26 22:28:44Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name cufflinks |
---|
6 | version 0.9.3 |
---|
7 | categories science biology |
---|
8 | platforms darwin |
---|
9 | maintainers gmail.com:haroldpimentel |
---|
10 | license Boost |
---|
11 | |
---|
12 | description Cufflinks assembles transcripts, estimates their abundances,\ |
---|
13 | and tests for differential expression and regulation in RNA-Seq samples. |
---|
14 | |
---|
15 | long_description Cufflinks assembles transcripts, estimates their abundances, \ |
---|
16 | and tests for differential expression and regulation in RNA-Seq \ |
---|
17 | samples. It accepts aligned RNA-Seq reads and assembles the \ |
---|
18 | alignments into a parsimonious set of transcripts. \ |
---|
19 | Cufflinks then estimates the relative abundances of these \ |
---|
20 | transcripts based on how many reads support each one. |
---|
21 | |
---|
22 | homepage http://cufflinks.cbcb.umd.edu/ |
---|
23 | master_sites ${homepage}downloads |
---|
24 | |
---|
25 | checksums sha1 172398c87bd5fb55ccea1d545769990e94a17e1e\ |
---|
26 | rmd160 9933360dd3b8fb32072a11521ec6d8be2077970b |
---|
27 | |
---|
28 | depends_lib port:zlib \ |
---|
29 | port:samtools \ |
---|
30 | port:boost |
---|
31 | |
---|
32 | # samtools is not universal |
---|
33 | universal_variant no |
---|
34 | |
---|
35 | post-destroot { |
---|
36 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
37 | xinstall -m 644 -W ${worksrcpath} \ |
---|
38 | AUTHORS \ |
---|
39 | LICENSE \ |
---|
40 | README \ |
---|
41 | ${destroot}${prefix}/share/doc/${name} |
---|
42 | } |
---|