Skip to content

Commit

Permalink
test pauses bug fix for 1 GPe simulations
Browse files Browse the repository at this point in the history
While simulating a non split GPe, the pauses test was not possible.
  • Loading branch information
Traps128 authored May 31, 2018
1 parent 2f72dc6 commit 7249c6a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions testPauses.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,12 @@ def main():

Directory = os.getcwd()
os.system('mkdir NoeArchGdf') # save the .gdf files before antagonist desaster
os.system('cp log/MSN* log/STN* log/Arky* log/Prot* log/GPi* log/FSI* NoeArchGdf/ ')
os.system('rm log/MSN* log/STN* log/Arky* log/Prot* log/FSI* log/GPi*')
if params['splitGPe']:
os.system('cp log/MSN* log/STN* log/Arky* log/Prot* log/GPi* log/FSI* NoeArchGdf/ ')
os.system('rm log/MSN* log/STN* log/Arky* log/Prot* log/FSI* log/GPi*')
else:
os.system('cp log/MSN* log/STN* log/GPe* log/GPi* log/FSI* NoeArchGdf/ ')
os.system('rm log/MSN* log/STN* log/GPe* log/FSI* log/GPi*')
gdfExploitation(Directory)

# don't bother with deactivation tests if activities at rest are not within plausible bounds
Expand Down

0 comments on commit 7249c6a

Please sign in to comment.