Source code for bioconvert.phyloxml2nexus

###########################################################################
# Bioconvert is a project to facilitate the interconversion               #
# of life science data from one format to another.                        #
#                                                                         #
# Copyright © 2018-2022  Institut Pasteur, Paris and CNRS.                #
#                                                                         #
# bioconvert is free software: you can redistribute it and/or modify      #
# it under the terms of the GNU General Public License as published by    #
# the Free Software Foundation, either version 3 of the License, or       #
# (at your option) any later version.                                     #
#                                                                         #
# bioconvert is distributed in the hope that it will be useful,           #
# but WITHOUT ANY WARRANTY; without even the implied warranty of          #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           #
# GNU General Public License for more details.                            #
#                                                                         #
# You should have received a copy of the GNU General Public License       #
# along with this program (COPYING file).                                 #
# If not, see <http://www.gnu.org/licenses/>.                             #
#                                                                         #
# Repository: https://github.com/bioconvert/bioconvert                    #
# Documentation: http://bioconvert.readthedocs.io                         #
###########################################################################
"""Converts :term:`PHYLOXML` file to :term:`NEXUS` format."""
import colorlog

from bioconvert import ConvBase
from bioconvert.core.decorators import compressor, requires

_log = colorlog.getLogger(__name__)


__all__ = ["PHYLOXML2NEXUS"]


[docs]class PHYLOXML2NEXUS(ConvBase): """ Converts a tree file from :term:`PHYLOXML` format to :term:`NEXUS` format. Methods available are based on gotree [GOTREE]_. """ #: Default value _default_method = "gotree" def __init__(self, infile, outfile=None, *args, **kwargs): """.. rubric:: constructor :param str infile: input :term:`PHYLOXML` file. :param str outfile: (optional) output :term:`NEXUS` file """ super().__init__(infile, outfile)
[docs] @requires("gotree") @compressor def _method_gotree(self, *args, **kwargs): """Convert :term:`PHYLOXML` file in :term:`NEXUS` format using gotree tool. `gotree documentation <https://github.com/fredericlemoine/gotree>`_""" self.install_tool("gotree") cmd = "gotree reformat nexus -i {infile} -o {outfile} -f phyloxml" cmd = cmd.format(infile=self.infile, outfile=self.outfile) self.execute(cmd)