Skip to content

Commit

Permalink
Merge pull request #237 from ZuckermanBrain/master
Browse files Browse the repository at this point in the history
Change to how make_eMouseData_drift handles default paths for non-Windows/Linux compatibility

Former-commit-id: 1a030bf
  • Loading branch information
marius10p committed Oct 28, 2020
2 parents a7d1edd + 667c069 commit 2bf0539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eMouse_drift/make_eMouseData_drift.m
Expand Up @@ -50,9 +50,9 @@ function make_eMouseData_drift(fpath, KS2path, chanMapName, useGPU, useParPool)

if useDefault
%get waveforms from eMouse folder in KS2
filePath{1} = [KS2path,'\eMouse_drift\','kampff_St_unit_waves_allNeg_2X.mat'];
filePath{1} = fullfile(KS2path,'eMouse_drift','kampff_St_unit_waves_allNeg_2X.mat');
fileCopies(1) = 2;
filePath{2} = [KS2path,'\eMouse_drift\','121817_SU_waves_allNeg_gridEst.mat'];
filePath{2} = fullfile(KS2path,'eMouse_drift','121817_SU_waves_allNeg_gridEst.mat');
fileCopies(2) = 2;
else
%fill in paths to waveform files
Expand Down

0 comments on commit 2bf0539

Please sign in to comment.