Skip to content

Commit

Permalink
Merge pull request #8 from catalystneuro/jfm-1
Browse files Browse the repository at this point in the history
Fix NwbRecording creation
  • Loading branch information
luiztauffer authored Feb 6, 2024
2 parents a2810c7 + 92bb270 commit c2f9886
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion common/processor_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def run_pipeline(context: PipelineContext):
logger.info('Creating input recording')
recording = NwbRecordingExtractor(
file=ff,
electrical_series_location=context.recording_context.electrical_series_path,
electrical_series_path=context.recording_context.electrical_series_path,
# file_path=context.input.get_url(),
# stream_mode="remfile"
)
Expand Down
13 changes: 8 additions & 5 deletions si_kilosort25/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ RUN git clone https://github.com/SpikeInterface/spikeinterface_pipelines.git &&
# git checkout dev && \
pip install -e .

# Install spikeinterface from source, for now
RUN git clone https://github.com/SpikeInterface/spikeinterface.git && \
cd spikeinterface && \
# git checkout dev && \
pip install -e .[full]
# # Install spikeinterface from source, for now
# RUN git clone https://github.com/SpikeInterface/spikeinterface.git && \
# cd spikeinterface && \
# # git checkout dev && \
# pip install -e .[full]

# Install spikeinterface
RUN pip install spikeinterface[full]==0.100.0

# Copy files into the container
WORKDIR /app
Expand Down
13 changes: 8 additions & 5 deletions si_kilosort3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ RUN git clone https://github.com/SpikeInterface/spikeinterface_pipelines.git &&
# git checkout dev && \
pip install -e .

# Install spikeinterface from source, for now
RUN git clone https://github.com/SpikeInterface/spikeinterface.git && \
cd spikeinterface && \
# git checkout dev && \
pip install -e .[full]
# # Install spikeinterface from source, for now
# RUN git clone https://github.com/SpikeInterface/spikeinterface.git && \
# cd spikeinterface && \
# # git checkout dev && \
# pip install -e .[full]

# Install spikeinterface
RUN pip install spikeinterface[full]==0.100.0

# Copy files into the container
WORKDIR /app
Expand Down

0 comments on commit c2f9886

Please sign in to comment.