1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE.txt, distributed with this software.
# ----------------------------------------------------------------------------
# Add skbio.io to sys.modules to prevent cycles in our imports
import skbio.io # noqa
# imports included for convenience
from skbio.sequence import Sequence, DNA, RNA, Protein, GeneticCode
from skbio.stats.distance import DistanceMatrix
from skbio.alignment import local_pairwise_align_ssw, TabularMSA
from skbio.tree import TreeNode, nj
from skbio.io import read, write
from skbio.stats.ordination import OrdinationResults
import skbio.diversity # noqa
import skbio.stats.evolve # noqa
__all__ = ['Sequence', 'DNA', 'RNA', 'Protein', 'GeneticCode',
'DistanceMatrix', 'local_pairwise_align_ssw', 'TabularMSA',
'TreeNode', 'nj', 'read', 'write', 'OrdinationResults']
__credits__ = "https://github.com/biocore/scikit-bio/graphs/contributors"
__version__ = "0.5.8"
mottos = [
# 03/15/2014
"It's gonna get weird, bro.",
# 05/14/2014
"no cog yay",
# 03/18/2015
"bincount!",
]
motto = mottos[-1]
# Created at patorjk.com
title = r"""
* *
_ _ _ _ _ _
(_) | (_) | | | (_)
___ ___ _| | ___| |_ ______| |__ _ ___
/ __|/ __| | |/ / | __|______| '_ \| |/ _ \
\__ \ (__| | <| | |_ | |_) | | (_) |
|___/\___|_|_|\_\_|\__| |_.__/|_|\___/
* *
"""
# Created by @gregcaporaso
art = r"""
Opisthokonta
\ Amoebozoa
\ /
* Euryarchaeota
\ |_ Crenarchaeota
\ *
\ /
*
/
/
/
*
/ \
/ \
Proteobacteria \
Cyanobacteria
"""
if __doc__ is None:
__doc__ = title + art
else:
__doc__ = title + art + __doc__
|