diff --git a/cami/example_run.py b/cami/example_run.py
new file mode 100755
index 0000000000000000000000000000000000000000..31aea6c1f19d7c2bed101522b2ad80bd64ec873d
--- /dev/null
+++ b/cami/example_run.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+import pwd
+import sys
+from os import chdir
+import subprocess
+import os
+
+
+chdir((sys.argv[0].rsplit('/', 1))[0])
+networkfile = "../data/input/networks/example_network.tsv"
+seedfile = "../data/input/seeds/example_seeds.txt"
+identifier = "example_run"
+command = f'./cami.py -n {networkfile} -s {seedfile} -id {identifier} -img -d --f;'
+subprocess.call(command, shell=True)
\ No newline at end of file
diff --git a/data/input/seeds/example_seeds.tsv b/data/input/seeds/example_seeds.txt
similarity index 100%
rename from data/input/seeds/example_seeds.tsv
rename to data/input/seeds/example_seeds.txt