-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure simulator module to allow for direct library-like usage
- Loading branch information
Showing
31 changed files
with
238 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ | |
|
||
# Definitions | ||
|
||
SWCFilePath = str | ||
|
||
|
||
class SWCTypesDef(IntEnum): | ||
soma = 1 | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
src/miv_simulator/interface/create_h5.py → src/miv_simulator/interface/h5_types.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
from miv_simulator.simulator.distribute_synapse_locations import ( | ||
distribute_synapse_locations, | ||
distribute_synapses, | ||
) | ||
from miv_simulator.simulator.generate_distance_connections import ( | ||
generate_distance_connections, | ||
distance_connections, | ||
) | ||
from miv_simulator.simulator.generate_input_features import ( | ||
generate_input_features, | ||
) | ||
from miv_simulator.simulator.generate_input_spike_trains import ( | ||
generate_input_spike_trains, | ||
import_input_spike_train, | ||
__doc__ = """Contains the end-user public API of the MiV-Simulator""" | ||
|
||
from miv_simulator.utils.io import create_neural_h5 | ||
from miv_simulator.simulator.generate_network_architecture import ( | ||
generate_network_architecture, | ||
) | ||
from miv_simulator.simulator.soma_coordinates import generate_soma_coordinates | ||
from miv_simulator.simulator.measure_distances import measure_distances | ||
|
||
# !deprecated, use io_utils directly | ||
from miv_simulator.simulator.make_h5types import make_h5types | ||
from miv_simulator.simulator.generate_synapse_forest import ( | ||
generate_synapse_forest, | ||
) | ||
from miv_simulator.simulator.distribute_synapses import distribute_synapses | ||
from miv_simulator.simulator.generate_connections import generate_connections |
Oops, something went wrong.