Mercurial > repos > deepakjadmin > r_caret_test1
diff pasre.xml @ 0:a4a2ad5a214e draft default tip
Uploaded
author | deepakjadmin |
---|---|
date | Thu, 05 Nov 2015 02:37:56 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pasre.xml Thu Nov 05 02:37:56 2015 -0500 @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<tool id="aaacaret005" name="Extract IDs From Prediction Result" version="0.0.1"> +<description>This tool parse the compound name/ids from prediction result</description> +<command> +awk -F '\t' '{print $1}' $predictionfile | sed '1d' | sed 's/"//g' | sed -e 's/^[ \t]*//;s/[ \t]*$//' >$Selected_Ids ; + </command> + +<inputs> +<param name="predictionfile" type="data" format="txt,csv,tabular" label="Predition Result File" help ="upload gcac prediction result file " /> +</inputs> +<outputs> +<data name="Selected_Ids" type="data" format="txt" label="Ids-${predictionfile.name}" /> +</outputs> +<help> +</help> +</tool>