Skip to content

Commit

Permalink
Bug splatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Spokhim committed Feb 14, 2021
1 parent 952ec00 commit d372838
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Je_Bif_Checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@
#matplotlib.rcParams['figure.figsize'] = (10.0, 5.0)

# Get all the file names.
TseriesFile = glob.glob(r"do-not-track\\2020_12_26\\LCycle*Tseries*.csv")
TseriesFile = glob.glob(os.getcwd() + "/do-not-track/2020_12_26/LCycle*Tseries*.csv")
#TseriesFile = glob.glob(r"D:\\Simulations\\2020_09_23\\LCycle*Tseries*.csv")

print(TseriesFile)

# Import SCM, don't worry about re-ordering. Needed to Calculate J_e

# Empty dict
Expand Down Expand Up @@ -69,6 +71,7 @@
# Obtain Parameter Values
x = re.findall("\[(.*)\].*\[(.*)\]",string)
Params.append(x[0])
print(x)

# Get G_value
G_value = float(x[0][0])
Expand Down
5 changes: 2 additions & 3 deletions single-yossarian.csh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ source ~/TVB/bin/activate.csh

# Working directory is where I ran qsub
cd "$PBS_O_WORKDIR"
#python Single_sim.py
python Je_Bif_Checker.py
exit
python Je_Bif_Checker.py
exit

0 comments on commit d372838

Please sign in to comment.