summaryrefslogtreecommitdiff
path: root/models/mutagenicity/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'models/mutagenicity/Makefile')
-rw-r--r--models/mutagenicity/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/models/mutagenicity/Makefile b/models/mutagenicity/Makefile
new file mode 100644
index 0000000..637004c
--- /dev/null
+++ b/models/mutagenicity/Makefile
@@ -0,0 +1,20 @@
+LAZAR_BIN = ../../bin
+METADATA = independent_variable_type dependent_variable_type dependent_variable_values similarity_thresholds
+
+crossvalidation: independent_variables
+ $(LAZAR_BIN)/classification_crossvalidation.rb .
+
+independent_variables: Mutagenicity-Salmonella_typhimurium.csv $(METADATA)
+ $(LAZAR_BIN)/fingerprint_independent_variables.rb $<
+
+independent_variable_type:
+ echo "binary" > $@
+
+dependent_variable_type:
+ echo "binary" > $@
+
+dependent_variable_values:
+ echo -e "non-mutagenic\nmutagenic" > $@
+
+similarity_thresholds:
+ echo -e "0.2\n0.5" > $@