From 6801258ecf5b615f9b7c424f46ab7bf6e6c891af Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Hrb=C3=A1=C4=8D?= <david@hrbac.cz>
Date: Mon, 23 Jan 2017 09:02:16 +0100
Subject: [PATCH] Removed unused script

---
 module_matrix.py | 16 ----------------
 1 file changed, 16 deletions(-)
 delete mode 100755 module_matrix.py

diff --git a/module_matrix.py b/module_matrix.py
deleted file mode 100755
index 619772a76..000000000
--- a/module_matrix.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import csv
-
-def get_data(filename):
-    '''function to read the data form the input csv file to use in the analysis'''
-    reader = [] # Just in case the file open fails
-    with open(filename, 'rb') as f:
-        reader = csv.reader(f,delimiter=',')                      
-        #returns all the data from the csv file in list form
-        #f.close() # May need to close the file when done
-        return list(reader)  # only return the reader when you have finished.
-
-your_list = []
-your_list += get_data('modules-anselm.csv')
-your_list += get_data('modules-salomon.csv')
-#your_list += get_data('modules-salomon-uv.csv')
-print your_list
-- 
GitLab