├── .github └── workflows │ └── treeswift_tests.yml ├── .gitignore ├── .tests ├── test.nex ├── test.nex.gz ├── test.nexml ├── test.nexml.gz ├── test.tre ├── test.tre.gz ├── test_escaped.tre └── tests.py ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── compile.sh ├── docs ├── .buildinfo ├── .nojekyll ├── _modules │ ├── index.html │ └── treeswift │ │ ├── Node.html │ │ └── Tree.html ├── _sources │ └── index.rst.txt ├── _static │ ├── basic.css │ ├── classic.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sidebar.js │ └── sphinx_highlight.js ├── genindex.html ├── index.html ├── objects.inv ├── py-modindex.html ├── search.html └── searchindex.js ├── docs_src ├── Makefile └── source │ ├── conf.py │ └── index.rst ├── setup.cfg ├── setup.py └── treeswift ├── Node.py ├── Tree.py └── __init__.py /.github/workflows/treeswift_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.github/workflows/treeswift_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /.tests/test.nex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.nex -------------------------------------------------------------------------------- /.tests/test.nex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.nex.gz -------------------------------------------------------------------------------- /.tests/test.nexml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.nexml -------------------------------------------------------------------------------- /.tests/test.nexml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.nexml.gz -------------------------------------------------------------------------------- /.tests/test.tre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.tre -------------------------------------------------------------------------------- /.tests/test.tre.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/test.tre.gz -------------------------------------------------------------------------------- /.tests/test_escaped.tre: -------------------------------------------------------------------------------- 1 | [&R] ('https://youtube.com','&'); 2 | -------------------------------------------------------------------------------- /.tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.tests/tests.py -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/compile.sh -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_modules/index.html -------------------------------------------------------------------------------- /docs/_modules/treeswift/Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_modules/treeswift/Node.html -------------------------------------------------------------------------------- /docs/_modules/treeswift/Tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_modules/treeswift/Tree.html -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs_src/Makefile -------------------------------------------------------------------------------- /docs_src/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs_src/source/conf.py -------------------------------------------------------------------------------- /docs_src/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/docs_src/source/index.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/setup.py -------------------------------------------------------------------------------- /treeswift/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/treeswift/Node.py -------------------------------------------------------------------------------- /treeswift/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/treeswift/Tree.py -------------------------------------------------------------------------------- /treeswift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niemasd/TreeSwift/HEAD/treeswift/__init__.py --------------------------------------------------------------------------------