Skip to content

Commit

Permalink
moved around files
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysAlfShaw committed Feb 16, 2024
1 parent 9a29e87 commit 0aa0ef9
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DRUID/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .src import homology_new as homology
from .src import background
from matplotlib import colors
from .src.source import source
from .src import source
import numpy as np
from skimage import measure
from tqdm import tqdm
Expand Down
Empty file removed DRUID/src/background/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion DRUID/src/homology/homology.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import cripser
import numpy as np
from ..utils import utils
from .src import utils
import time
from functools import partial
import pandas
Expand Down
6 changes: 3 additions & 3 deletions DRUID/src/homology_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import cripser
import numpy as np
from .utils import utils
from .background import background
from ..src import utils
from ..src import background

import time
import pandas
Expand Down Expand Up @@ -257,7 +257,7 @@ def compute_ph_components(img,local_bg,analysis_threshold_val,lifetime_limit,

global GPU_Option
GPU_Option = GPU
print('Computing PH components...')
print('Computing PH components...ls ')
t0_compute_ph = time.time()
pd = cripser.computePH(-img,maxdim=0)
t1_compute_ph = time.time()
Expand Down
Empty file removed DRUID/src/source/__init__.py
Empty file.
File renamed without changes.
Empty file removed DRUID/src/utils/__init__.py
Empty file.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,5 @@
install_requires=requiremets,

packages=['DRUID',
'DRUID/src',
'DRUID/src/background',
'DRUID/src/homology',
'DRUID/src/source',
'DRUID/src/utils'],
'DRUID/src'],
)

0 comments on commit 0aa0ef9

Please sign in to comment.