From 2a4b1b990c5feee3725a2494cd5bb8ee4ccba6ac Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Fri, 22 Aug 2014 18:36:14 -0300 Subject: [PATCH] avocado.core.tree: Add note about ETE2 and copyright clarification Add a note in the copyright headers and tree docstrings recognizing that the base Tree data structure had inspiration (and the ASCII drawing code) from the ETE2 project, and hereby list Jaime Huerta Cepas as one of the authors of the code, with his express consent. CC: Jaime Huerta Cepas Signed-off-by: Lucas Meneghel Rodrigues --- avocado/core/tree.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/avocado/core/tree.py b/avocado/core/tree.py index 0865b043..4a7ac2cf 100644 --- a/avocado/core/tree.py +++ b/avocado/core/tree.py @@ -13,9 +13,23 @@ # # Authors: Ruda Moura # Lucas Meneghel Rodrigues +# Jaime Huerta-Cepas +# """ Tree data strucure with nodes. + +This tree structure (Tree drawing code) was inspired in the base tree data +structure of the ETE 2 project: + +http://pythonhosted.org/ete2/ + +A library for analysis of phylogenetics trees. + +Explicit permission has been given by the copyright owner of ETE 2 +Jaime Huerta-Cepas to take ideas/use snippets from his +original base tree code and re-license under GPLv2+, given that GPLv3 and GPLv2 +(used in some avocado files) are incompatible. """ import collections -- GitLab