Utils: add "overall" data processing scripts
authorP2P-Next User <p2p@p2p-next-04-201.grid.pub.ro>
Mon, 24 Jan 2011 14:57:20 +0000 (16:57 +0200)
committerP2P-Next User <p2p@p2p-next-04-201.grid.pub.ro>
Mon, 24 Jan 2011 14:57:32 +0000 (16:57 +0200)
Utils/data-processing/all_get_scenario_down_time [new file with mode: 0755]
Utils/data-processing/all_parse_data [new file with mode: 0755]

diff --git a/Utils/data-processing/all_get_scenario_down_time b/Utils/data-processing/all_get_scenario_down_time
new file mode 100755 (executable)
index 0000000..11894e9
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+base=/home/p2p/george/P2P-Testing-Infrastructure/Results/bt-unified-tracker/
+
+while read scenario size; do
+       ./get_scenario_down_time "$base" "$scenario" > "$scenario".txt
+done < scenarios.lst
diff --git a/Utils/data-processing/all_parse_data b/Utils/data-processing/all_parse_data
new file mode 100755 (executable)
index 0000000..29b7f79
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+base=/home/p2p/george/P2P-Testing-Infrastructure/Results/bt-unified-tracker/
+
+while read scenario size; do
+       Rscript down_time_mean_sd.R --args "$scenario".txt "$size" > r-"$scenario".txt
+done < scenarios.lst