Skip to content

Commit

Permalink
Fix cyclic import
Browse files Browse the repository at this point in the history
  • Loading branch information
hadim committed Jun 18, 2019
1 parent 8b2a93b commit 04fd567
Show file tree
Hide file tree
Showing 3 changed files with 1,582 additions and 5 deletions.
6 changes: 3 additions & 3 deletions anamic/simulator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from .mt_simulator import dimers_builder
from .mt_simulator import MicrotubuleSimulator

from .structure import get_structure_parameters
from .structure import generate_uniform_taper
from .structure import get_dimer_positions
from .structure import get_mt_tips

from .mt_simulator import dimers_builder
from .mt_simulator import MicrotubuleSimulator

from .fov import create_fov
4 changes: 2 additions & 2 deletions anamic/simulator/fov.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from scipy import ndimage
from skimage import morphology

from . import dimers_builder
from . import MicrotubuleSimulator
from .mt_simulator import dimers_builder
from .mt_simulator import MicrotubuleSimulator


def pick_value(values, prob=None):
Expand Down
1,577 changes: 1,577 additions & 0 deletions notebooks/Simulator.ipynb

Large diffs are not rendered by default.

0 comments on commit 04fd567

Please sign in to comment.