Skip to content

Commit 8c9777e

Browse files
author
Zak Gilliam
committed
slight changes to main path logic
1 parent 0849ee7 commit 8c9777e

File tree

2 files changed

+2
-60
lines changed

2 files changed

+2
-60
lines changed

.gitignore

Lines changed: 1 addition & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,14 @@
1-
2-
############################
3-
# Python
4-
############################
51
# Byte-compiled / optimized / DLL files
62
__pycache__/
7-
*.py[cod]
83
*$py.class
94

10-
# Distribution / packaging
11-
build/
12-
dist/
13-
*.egg-info/
14-
.eggs/
5+
node_modules
156

167
# Virtual environments
178
.venv/
189
venv/
19-
env/
20-
ENV/
2110
.direnv/
2211
direnv/
2312

24-
# Pytest cache
25-
.pytest_cache/
26-
27-
# Jupyter Notebook checkpoints
28-
.ipynb_checkpoints/
29-
30-
# MyPy cache
31-
.mypy_cache/
32-
.dmypy.json
33-
dmypy.json
34-
35-
############################
36-
# Rust
37-
############################
38-
# Cargo build output
3913
target/
4014

41-
# Rust/Cargo lock files for local dev
42-
Cargo.lock
43-
44-
# Rust incremental compilation
45-
**/*.rs.bk
46-
47-
############################
48-
# Node.js
49-
############################
50-
# Dependency directories
51-
node_modules/
52-
53-
# Build output
54-
dist/
55-
build/
56-
57-
# Logs
58-
npm-debug.log*
59-
yarn-debug.log*
60-
yarn-error.log*
61-
pnpm-debug.log*
62-
63-
# Environment variables
64-
.env
65-
.env.local
66-
.env.*.local
67-
68-
############################
69-
# OS-generated files
70-
############################
71-
.DS_Store
72-
Thumbs.db

code/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, system):
1111
elif system == "Home":
1212
self.base_path = "/mnt/lss/Projects/BOOST/"
1313
elif system == "vosslnx":
14-
self.base_path = "/mnt/lss/vosslabhpc/Projects/BOOST/"
14+
self.base_path = "/mnt/nfs/lss/vosslabhpc/Projects/BOOST/"
1515
self.zone_path = f"{self.base_path}InterventionStudy/1-projectManagement/participants/ExerciseSessionMaterials/Intervention Materials/BOOST HR ranges.xlsx"
1616

1717
self.out_path = '../qc_out.csv'

0 commit comments

Comments
 (0)