Skip to content

Commit

Permalink
rename to aphylogeo
Browse files Browse the repository at this point in the history
  • Loading branch information
geomarceau committed Oct 2, 2023
1 parent 65e24a8 commit efd7ae9
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions temp/main.py → aphylogeo/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from aPhyloGeo.utils import geneticPipeline, climaticPipeline
from aPhyloGeo.params import Params
from aphylogeo.utils import geneticPipeline, climaticPipeline
from aphylogeo.params import Params
import pandas as pd

titleCard = r"""
Expand All @@ -12,7 +12,7 @@
\/__/\/_/ \/_/ \/_/\/_/`/___/> \/____/\/___/ \/___/ \/____/\/___/
/\___/
\/__/
""" # https://patorjk.com/software/taag/#p=display&f=Larry%203D&t=aPhyloGeo%20
""" # https://patorjk.com/software/taag/#p=display&f=Larry%203D&t=aphylogeo%20

if __name__ == "__main__":
print(titleCard + "\n")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
pythonpath = "aPhyloGeo/"
pythonpath = "aphylogeo/"
6 changes: 3 additions & 3 deletions tests/test_climatic.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import pandas as pd
from aPhyloGeo.params import Params
from aPhyloGeo import utils
from aphylogeo.params import Params
from aphylogeo import utils
from pathlib import Path
import pytest

Expand All @@ -21,7 +21,7 @@ def climaticTreesSetup():
return utils.climaticPipeline(pd.read_csv(p.file_name), p.names)


#@pytest.mark.skip(reason="Work in progress, new version matrix return 0.00000 instead than 0")

def test_climaticPipeline():
'''
This test is used to test the climaticPipeline function.
Expand Down
6 changes: 3 additions & 3 deletions tests/test_genetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from Bio.Phylo.PhyloXML import Phylogeny
import os
from pathlib import Path
from aPhyloGeo.params import Params
from aPhyloGeo.alignement import AlignSequences
from aPhyloGeo import utils
from aphylogeo.params import Params
from aphylogeo.alignement import AlignSequences
from aphylogeo import utils
import pandas as pd


Expand Down

0 comments on commit efd7ae9

Please sign in to comment.