ó
:>"^c           @   s
  d  Z  d d l Z d d l Z d Z d e f d „  ƒ  YZ d e e f d „  ƒ  YZ d e f d	 „  ƒ  YZ	 d
 e	 f d „  ƒ  YZ
 d e	 f d „  ƒ  YZ d e	 f d „  ƒ  YZ e j j e j j e ƒ ƒ Z e j j e j j e d ƒ ƒ re j d j e ƒ e	 ƒ n  d S(   sã   Collection of modules for dealing with biological data in Python.

The Biopython Project is an international association of developers
of freely available Python tools for computational molecular biology.

http://biopython.org
iÿÿÿÿNs   1.76t   MissingExternalDependencyErrorc           B   s   e  Z d  Z RS(   s·   Missing an external dependency.

    Used for things like missing command line tools. Important for our unit
    tests to allow skipping tests with missing external dependencies.
    (   t   __name__t
   __module__t   __doc__(    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR       s   t   MissingPythonDependencyErrorc           B   s   e  Z d  Z RS(   sB  Missing an external python dependency (subclass of ImportError).

    Used for missing Python modules (rather than just a typical ImportError).
    Important for our unit tests to allow skipping tests with missing external
    python dependencies, while also allowing the exception to be caught as an
    ImportError.
    (   R   R   R   (    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR      s   t   BiopythonWarningc           B   s   e  Z d  Z RS(   s]  Biopython warning.

    Biopython should use this warning (or subclasses of it), making it easy to
    silence all our warning messages should you wish to:

    >>> import warnings
    >>> from Bio import BiopythonWarning
    >>> warnings.simplefilter('ignore', BiopythonWarning)

    Consult the warnings module documentation for more details.
    (   R   R   R   (    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR   +   s   t   BiopythonParserWarningc           B   s   e  Z d  Z RS(   sÏ  Biopython parser warning.

    Some in-valid data files cannot be parsed and will trigger an exception.
    Where a reasonable interpretation is possible, Biopython will issue this
    warning to indicate a potential problem. To silence these warnings, use:

    >>> import warnings
    >>> from Bio import BiopythonParserWarning
    >>> warnings.simplefilter('ignore', BiopythonParserWarning)

    Consult the warnings module documentation for more details.
    (   R   R   R   (    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR   ;   s   t   BiopythonDeprecationWarningc           B   s   e  Z d  Z RS(   s=  Biopython deprecation warning.

    Biopython uses this warning instead of the built in DeprecationWarning
    since those are ignored by default since Python 2.7.

    To silence all our deprecation warning messages, use:

    >>> import warnings
    >>> from Bio import BiopythonDeprecationWarning
    >>> warnings.simplefilter('ignore', BiopythonDeprecationWarning)

    Code marked as deprecated is likely to be removed in a future version
    of Biopython. To avoid removal of this code, please contact the Biopython
    developers via the mailing list or GitHub.
    (   R   R   R   (    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR   L   s   t   BiopythonExperimentalWarningc           B   s   e  Z d  Z RS(   sJ  Biopython experimental code warning.

    Biopython uses this warning for experimental code ('alpha' or 'beta'
    level code) which is released as part of the standard releases to mark
    sub-modules or functions for early adopters to test & give feedback.

    Code issuing this warning is likely to change (or even be removed) in
    a subsequent release of Biopython. Such code should NOT be used for
    production/stable code. It should only be used if:

    - You are running the latest release of Biopython, or ideally the
      latest code from our repository.
    - You are subscribed to the biopython-dev mailing list to provide
      feedback on this code, and to be alerted of changes to it.

    If all goes well, experimental code would be promoted to stable in
    a subsequent release, and this warning removed from it.
    (   R   R   R   (    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyR   `   s   s   setup.pysv  You may be importing Biopython from inside the source tree. This is bad practice and might lead to downstream issues. In particular, you might encounter ImportErrors due to missing compiled C extensions. We recommend that you try running your code from outside the source tree. If you are outside the source tree then you have a setup.py file in an unexpected directory: {}.(   R   t   ost   warningst   __version__t	   ExceptionR    t   ImportErrorR   t   WarningR   R   R   R   t   patht   dirnamet   __file__t   _parent_dirt   existst   joint   warnt   format(    (    (    s\   /home/psgendb/BIRCHDEV/lib-linux-x86_64/python/lib64/python3.5/site-packages/Bio/__init__.pyt   <module>   s   
!