# HG changeset patch # User caleb-easterly # Date 1506378063 14400 # Node ID ebc00346c9eb08dc9a02f9c966a44cdafb3a2c3a planemo upload commit b5afbd13a9ecfc706597cd93681eb5c1be3145e9-dirty diff -r 000000000000 -r ebc00346c9eb README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Mon Sep 25 18:21:03 2017 -0400 @@ -0,0 +1,1 @@ +tool to prepare data for REVIGO diff -r 000000000000 -r ebc00346c9eb revigoWrapper.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/revigoWrapper.xml Mon Sep 25 18:21:03 2017 -0400 @@ -0,0 +1,74 @@ + + Cut columns from tabular data and define as REVIGO datatype. + + #if ($include_numeric.include_numeric_column == "yes"): + awk + '{ print \$goTermsCol"\t"\$numberCol}' + goTermsCol=$goTermsCol + numberCol=$include_numeric.numberCol + $input > $out_file1 + #else + awk '{ print \$goTermsCol}' + goTermsCol=$goTermsCol + $input > $out_file1 + #end if + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Prepare data for REVIGO + + + + @misc{REVIGOtool, + author = {Caleb Easterly}, + date = {22 Sept 2017}, + title = {REVIGO Data Prep Tool} + } + + + diff -r 000000000000 -r ebc00346c9eb test-data/test.tab --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test.tab Mon Sep 25 18:21:03 2017 -0400 @@ -0,0 +1,2 @@ +GO:123 blah 0.001 otherdata +GO:456 blah 0.002 other diff -r 000000000000 -r ebc00346c9eb test-data/test1.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test1.out Mon Sep 25 18:21:03 2017 -0400 @@ -0,0 +1,2 @@ +GO:123 0.001 +GO:456 0.002 diff -r 000000000000 -r ebc00346c9eb test-data/test2.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test2.out Mon Sep 25 18:21:03 2017 -0400 @@ -0,0 +1,2 @@ +GO:123 +GO:456