diff --git a/modelCsharp/TestModel/TestModel/Test.cs b/modelCsharp/TestModel/TestModel/Test.cs index 291e5c2..7fb4d6a 100644 --- a/modelCsharp/TestModel/TestModel/Test.cs +++ b/modelCsharp/TestModel/TestModel/Test.cs @@ -24,7 +24,7 @@ namespace TestModel { public class Test { - private static void runPythonScript() +/* private static void runPythonScript() { //that is new with james //string progToRun = dir + @"/../TestModel/testGraph/testGraph/testGraph.py"; @@ -41,7 +41,7 @@ private static void runPythonScript() StreamReader sReader = proc.StandardOutput; proc.WaitForExit(); Console.ReadLine(); - } + }*/ public static void RunTests(Dictionary _configDict) { @@ -110,7 +110,7 @@ public static void RunTests(Dictionary _configDict) } // uncomment it if run is on local machine - runPythonScript(); + //runPythonScript(); } diff --git a/modelCsharp/TestModel/testGraph/testGraph/testGraph.py b/modelCsharp/TestModel/testGraph/testGraph/testGraph.py index 27c1295..5c5f4ae 100644 --- a/modelCsharp/TestModel/testGraph/testGraph/testGraph.py +++ b/modelCsharp/TestModel/testGraph/testGraph/testGraph.py @@ -7,10 +7,10 @@ path = os.getcwd() #run it on machine -observed_path = os.path.join(path, "../../../../TestModel/Observed/observed.csv") +#observed_path = os.path.join(path, "../../../../TestModel/Observed/observed.csv") #run this code for an action -#observed_path = "TestModel/Observed/observed.csv" +observed_path = "TestModel/Observed/observed.csv" observed_data = pd.read_csv(observed_path,index_col=0)