crest4
The crest4 python package can automatically assign taxonomic names to
DNA sequences obtained from environmental sequencing.
The README and source code are located at:
1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3 4""" 5The `crest4` python package can automatically assign taxonomic names to 6DNA sequences obtained from environmental sequencing. 7 8The README and source code are located at: 9 10https://github.com/xapple/crest4 11""" 12 13# Special variables # 14__version__ = '4.4.6' 15 16# Constants # 17project_url = 'https://github.com/xapple/crest4' 18 19# Expose our main object at the module level 20# So that you can just do `from crest4 import Classify` later 21from .classify import Classify
project_url =
'https://github.com/xapple/crest4'