Skip to content

Commit 0547847

Browse files
committed
debugging env
1 parent f52ed89 commit 0547847

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

code/orchestrate.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
import argparse
1212
import sys
1313

14-
OBSDIR = '/Volumes/vosslabhpc/Projects/BOOST/InterventionStudy/3-Experiment/data/bids'
15-
INTDIR = '/Volumes/vosslabhpc/Projects/BOOST/ObersvationalStudy/3-Experiment/data/bids'
16-
RDSSDIR = '/Volumes/VossLab/Repositories/Accelerometer_Data/'
14+
OBSDIR = '/mnt/vosslab-svc/vosslabhpc/Projects/BOOST/InterventionStudy/3-Experiment/data/bids'
15+
INTDIR = '/mnt/vosslab-svc/vosslabhpc/Projects/BOOST/ObersvationalStudy/3-Experiment/data/bids'
16+
RDSSDIR = 'mnt/vosslab-svc/rdss_vosslab/Repositories/Accelerometer_Data/'
1717
TXT = './resources/files.txt'
1818

1919

@@ -27,14 +27,14 @@ def parse_args():
2727

2828
def init_servers():
2929
#this should connect the linux machine to the RDSS and LSS
30-
30+
os.system("mkdir -p /mnt/vosslab-svc/tmp")
3131
try:
32-
os.system("sudo mount -t cifs //itf-rs-store24.hpc.uiowa.edu/vosslabhpc /home/vosslab-svc/tmp/vosslabhpc -o uid=vosslab-svc,username=vosslab-svc,vers=3.0")
32+
os.system("sudo mount -t cifs //itf-rs-store24.hpc.uiowa.edu/vosslabhpc /mnt/vosslab-svc/tmp/vosslabhpc -o uid=vosslab-svc,username=vosslab-svc,vers=3.0")
3333
except Exception as e:
3434
print(f'An error occured trying to connect to LSS: {e}')
3535
sys.exit(1)
3636
try:
37-
os.system("sudo mount -t cifs //rdss.iowa.uiowa.edu/rdss_mwvoss/VossLab /mnt/nfs/rdss/rdss_vosslab -o user=vosslab-svc,uid=2418317,gid=900001021")
37+
os.system("sudo mount -t cifs //rdss.iowa.uiowa.edu/rdss_mwvoss/VossLab /mnt/vosslab-svc/tmp/rdss_vosslab -o user=vosslab-svc,uid=2418317,gid=900001021")
3838
except Exception as e:
3939
print(f'An error occured trying to connect to RDSS: {e}')
4040
sys.exit(1)

0 commit comments

Comments
 (0)