Skip to content

Commit

Permalink
Fix by pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chtsai0105 committed Oct 5, 2023
1 parent d6a564f commit 4f015c1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ abstract: >-
The assumptions in this approach are that the markers are
generally single copy in genomes and taking best hit is
sufficient first approximation for identifying orthologs.
sufficient first approximation for identifying orthologs.
keywords:
- phylogenomics
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion misc/phyling_flowchart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions tests/phylotree_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,39 +8,39 @@ def test_on_pep_single_tree():
inputs = list(Path("tests/pep_align_single").iterdir())
tree_generator_obj = tree_generator("upgma", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True


def test_on_pep_consensus_tree():
inputs = list(Path("tests/pep_align_consensus").iterdir())
tree_generator_obj = tree_generator("upgma", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True


def test_on_cds_single_tree():
inputs = list(Path("tests/cds_align_single").iterdir())
tree_generator_obj = tree_generator("upgma", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True


def test_on_cds_consensus_tree():
inputs = list(Path("tests/cds_align_consensus").iterdir())
tree_generator_obj = tree_generator("upgma", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True


def test_nj():
inputs = list(Path("tests/cds_align_consensus").iterdir())
tree_generator_obj = tree_generator("nj", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True


def test_fasttree():
inputs = list(Path("tests/cds_align_consensus").iterdir())
tree_generator_obj = tree_generator("ft", 1, *inputs)
tree = tree_generator_obj.get()
assert isinstance(tree, Phylo.BaseTree.Tree) == True
assert isinstance(tree, Phylo.BaseTree.Tree) is True

0 comments on commit 4f015c1

Please sign in to comment.