Skip to content

Commit

Permalink
realized my mistake and reverting
Browse files Browse the repository at this point in the history
  • Loading branch information
zkashner committed Feb 27, 2018
1 parent c2b8b28 commit d764443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analysis/run.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
import subprocess

execute_script = 'source/prepare_data/create_data.r'
execute_script = '../config/scons/scons.py'

def main(execute_script):
'''
Expand All @@ -13,7 +13,7 @@ def main(execute_script):
cl_args = ' '.join(sys.argv)

# Create call
call = 'Rscript %s %s' % (execute_script, cl_args)
call = 'python %s %s' % (execute_script, cl_args)

# Execute
subprocess.call(call, shell = True)
Expand Down

0 comments on commit d764443

Please sign in to comment.