packages feed

Taxonomy-1.0.1: Taxonomy.cabal

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
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 <http://www.ncbi.nlm.nih.gov/taxonomy Entrez> REST interface via <https://github.com/eggzilla/EntrezHTTP EntrezHTTP>,
		     as well as from the files of the Taxonomy database <ftp://ftp.ncbi.nih.gov/pub/taxonomy/ dump>.
                     .
                     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 (<http://graphviz.org/ graphviz>)
                     .
                     <<http://www.tbi.univie.ac.at/~egg/taxonomy.svg dot>> 
                     .
                     or via json-format (<http://d3js.org/d3js>).
		     .
		     The <https://hackage.haskell.org/package/TaxonomyTools TaxonomyTools> 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