# HG changeset patch # User eschen42 # Date 1535815983 14400 # Node ID 9a52306991b3d9f6de7c89c03d81c08b8c1324ee # Parent 06c51af11531980ef74cc68f1fc033328caf50f0 planemo upload for repository https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master commit 5aeb583ae4a55cc24289f9d95590e02553a89552 diff -r 06c51af11531 -r 9a52306991b3 w4mcorcov.xml --- a/w4mcorcov.xml Fri Aug 10 11:15:31 2018 -0400 +++ b/w4mcorcov.xml Sat Sep 01 11:33:03 2018 -0400 @@ -1,4 +1,4 @@ - + OPLS-DA Contrasts of Univariate Results @@ -68,7 +68,16 @@ type="data" help="variable metadata, one row per variable" /> + help="REQUIRED - The name of the column of sampleMetadata corresponding to the qualitative variable used to define the contrasts. Except when the 'Univariate Significance-test' is set to 'none', this also must be a portion of the column names in the variableMetadata file."> + + + + + + + + + @@ -111,6 +120,7 @@ + @@ -119,8 +129,8 @@ - - + + + @@ -386,6 +397,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10.1021/ac0713510 diff -r 06c51af11531 -r 9a52306991b3 w4mcorcov_input.R --- a/w4mcorcov_input.R Fri Aug 10 11:15:31 2018 -0400 +++ b/w4mcorcov_input.R Sat Sep 01 11:33:03 2018 -0400 @@ -1,6 +1,6 @@ # read_data_frame - read a w4m data frame, with error handling # e.g., data_matrix_input_env <- read_data_frame(dataMatrix_in, "data matrix input") -read_data_frame <- function(file_path, kind_string, failure_action = failure_action) { +read_data_frame <- function(file_path, kind_string, rdf_failure_action = failure_action) { my.env <- new.env() my.env$success <- FALSE my.env$msg <- sprintf("no message reading %s", kind_string) @@ -14,7 +14,7 @@ } ) if (!my.env$success) { - failure_action(my.env$msg) + rdf_failure_action(my.env$msg) return ( FALSE ) } return (my.env)