name: Taxonomy -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 1.0.1 x-revision: 1 synopsis: Libary for parsing, processing and vizualization of taxonomy data description: Haskell cabal Taxonomy libary contains tools, parsers, datastructures and visualisation for the NCBI (National Center for Biotechnology Information) Taxonomy datasources. . It can utilize information from the REST interface via , as well as from the files of the Taxonomy database . . Input data is parsed into a FGL based datastructure, which enables a wealth of processing steps like node distances, retrieval of parent nodes or extraction of subtrees. . Trees can be visualised via dot-format () . <> . or via json-format (). . The package contains tools based on this package. license: GPL-3 license-file: LICENSE author: Florian Eggenhofer maintainer: florian.eggenhofer@univie.ac.at -- copyright: category: Bioinformatics build-type: Simple cabal-version: >=1.8 source-repository head type: git location: https://github.com/eggzilla/Taxonomy source-repository this type: git location: https://github.com/eggzilla/Taxonomy/tree/v1.0.1 tag: v1.0.1 library -- Modules exported by the library. exposed-modules: Bio.TaxonomyData, Bio.Taxonomy -- compiler-options: ghc-options: -Wall -O2 -fno-warn-unused-do-bind -- Other library packages from which modules are imported. build-depends: base >=4.5 && <5, parsec, either-unwrap, fgl, text, graphviz, bytestring, aeson, vector -- Directories containing source files. hs-source-dirs: src