Skip to content

Commit

Permalink
tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
snacktavish committed Aug 29, 2019
1 parent 3ec5d6f commit 1144348
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ venv*/
*.pyo
*.aux
*.log
*.p
build/
Physcraper.egg-info/*
tests/output/*
Expand Down
14 changes: 14 additions & 0 deletions tests/test_get_mrca_ott.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# package import
from physcraper import get_mrca_ott



l1 = ['515698','590452','643717']
taxon_not_in_tree = ['372706','563165']

def test_get_mrca_ott():
a1 = get_mrca_ott(l1)
a2 = get_mrca_ott(taxon_not_in_tree)
assert a1 == 1042120


0 comments on commit 1144348

Please sign in to comment.