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:

https://github.com/xapple/crest4

 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.3.8'
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
22
23# After sh==1.14.3 the object returned changed #
24import sh
25sh_version = int(sh.__version__.split('.')[0])
26if sh_version > 1: sh = sh.bake(_return_cmd=True)
project_url = 'https://github.com/xapple/crest4'
sh_version = 2