summaryrefslogtreecommitdiff
path: root/models/mutagenicity-padel/Makefile
blob: 6e04adfbf119c218ab14efe2be8c33d7e39a31b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
LAZAR_BIN = ../../bin
METADATA = independent_variable_type dependent_variable_type dependent_variable_values similarity_thresholds

crossvalidation: independent_variables
	$(LAZAR_BIN)/crossvalidation.rb .

independent_variables: GenoTox-database.csv $(METADATA)
	$(LAZAR_BIN)/scale_independent_variables.rb $< 

independent_variable_type:
	echo "numeric" > $@

dependent_variable_type:
	echo "binary" > $@

dependent_variable_values:
	echo -e "\"0\"\n\"1\"" > $@

similarity_thresholds:
	echo -e "0.2\n0.5" > $@