# HG changeset patch
# User bgruening
# Date 1389623324 18000
# Node ID 9262f801d7394479894ca3f6a79308bbe0cf39b7
# Parent 59b3b6ce10bb9b528e06513db7e5b407ab4b0224
Uploaded
diff -r 59b3b6ce10bb -r 9262f801d739 EDeN_nearest_neighbor.xml
--- a/EDeN_nearest_neighbor.xml Tue Oct 29 11:07:49 2013 -0400
+++ b/EDeN_nearest_neighbor.xml Mon Jan 13 09:28:44 2014 -0500
@@ -14,12 +14,6 @@
--file_type "SPARSE_VECTOR"
--binary_file_type
- @kernel_type_options@
- --graph_type $graph_type
- @input_smooth_conditional@
-
- @normalization_kernel_hash_radius_dist_vertex@
-
--output_directory_path \$tmp_dir
diff -r 59b3b6ce10bb -r 9262f801d739 EDeN_test.xml
--- a/EDeN_test.xml Tue Oct 29 11:07:49 2013 -0400
+++ b/EDeN_test.xml Mon Jan 13 09:28:44 2014 -0500
@@ -14,12 +14,6 @@
--model_file_name $model_infile
- @kernel_type_options@
-
- --graph_type $graph_type
-
- @normalization_kernel_hash_radius_dist_vertex@
-
--output_directory_path \$tmp_dir
--minimal_output
diff -r 59b3b6ce10bb -r 9262f801d739 EDeN_train.xml
--- a/EDeN_train.xml Tue Oct 29 11:07:49 2013 -0400
+++ b/EDeN_train.xml Mon Jan 13 09:28:44 2014 -0500
@@ -27,12 +27,16 @@
--topological_regularization_num_neighbors $topological_regularization_num_neighbors
--topological_regularization_decay_rate $topological_regularization_decay_rate
- --num_iterations $num_iterations
- --threshold $threshold
- --only_positive $only_positive
- --only_negative $only_negative
+ --random_seed $random_seed
- --random_seed $random_seed
+ ## only if it is semisupervised
+ #if $supervised_opts.supervised_opts_selector != 'non':
+ --num_iterations $supervised_opts.num_iterations
+ --threshold $supervised_opts.threshold
+ --only_positive $supervised_opts.only_positive
+ --only_negative $supervised_opts.only_negative
+ #end if
+
@@ -43,16 +47,7 @@
-
-
-
-
-
-
-
-
-
+
@@ -64,8 +59,24 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r 59b3b6ce10bb -r 9262f801d739 datatypes_conf.xml
--- a/datatypes_conf.xml Tue Oct 29 11:07:49 2013 -0400
+++ b/datatypes_conf.xml Mon Jan 13 09:28:44 2014 -0500
@@ -4,7 +4,7 @@
-
-
+
+
diff -r 59b3b6ce10bb -r 9262f801d739 eden.py
--- a/eden.py Tue Oct 29 11:07:49 2013 -0400
+++ b/eden.py Mon Jan 13 09:28:44 2014 -0500
@@ -1,11 +1,11 @@
"""
-EDeN filetypes
+ EDeN filetypes
"""
-from galaxy.datatypes.data import Binary
+from galaxy.datatypes.tabular import Tabular
-class Gspan( Binary ):
+class Gspan( Tabular ):
"""Class describing an gSpan file"""
file_ext = "gspan"
@@ -22,7 +22,7 @@
except:
return "Binary gSpan file (%s)" % ( data.nice_size( dataset.get_size() ) )
-class SparseVector( Binary ):
+class SparseVector( Tabular ):
"""Class describing an SparseVector file"""
file_ext = "sparsevector"