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 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup ged-lab khmer 2012-assembly-artifacts |
---|
9 | name py-khmer |
---|
10 | categories python science |
---|
11 | platforms darwin |
---|
12 | license BSD |
---|
13 | python.versions 26 27 |
---|
14 | |
---|
15 | if {${subport} != ${name}} { |
---|
16 | depends_lib-append port:py${python.version}-screed |
---|
17 | } |
---|
18 | |
---|
19 | description khmer is a library and toolkit for doing k-mer-based dataset analysis and transformations. |
---|
20 | long_description khmer is a library and toolkit for doing k-mer-based dataset analysis and transformations. Our focus in developing it has been on scaling assembly of metagenomes and mRNA. khmer can be used for a number of transformations, include inexact transformations (abundance filtering and error trimming) and exact transformations (graphsize filtering, to throw away disconnected reads\; and partitioning, to split reads into disjoint sets). |
---|
21 | maintainers node99.org:sean openmaintainer |
---|
22 | |
---|
23 | checksums rmd160 ea6a584340cf04a535cf548e207d766c3d3e7866 \ |
---|
24 | sha256 acacdb6257da593a7490fdad496d6c07438effd59b68709860c1fe10c3e1039c |
---|
25 | build.dir ${worksrcpath}/python |
---|
26 | |
---|
27 | pre-build { |
---|
28 | system -W ${worksrcpath}/lib "make CXX=${configure.cxx}" |
---|
29 | } |
---|