diff --git a/scripts/combinations.py b/scripts/combinations.py
deleted file mode 100644
index 8186da1ab9a65d7d42fee64f93350f57c2e5b77a..0000000000000000000000000000000000000000
--- a/scripts/combinations.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import itertools
-import re
-l = ['A', 'S', 'U', 'T']
-mask = ''.join(reversed(l))
-for i in range(1,len(l)+1):
-    for comb in itertools.combinations(l, i):
-        reg = "[^%s]" % ''.join(comb)
-        print re.sub(reg,"-", mask)