annotate parse.xml @ 0:5bc834b2ee27 draft

Uploaded
author deepakjadmin
date Wed, 20 Jan 2016 07:49:17 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
1 <?xml version="1.0"?>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
2 <tool id="aaacaret005" name="Extract IDs From Prediction Result" version="0.0.1">
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
3 <description>This tool parse the compound name/ids from prediction result</description>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
4 <command>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
5 awk -F '\t' '{print $1}' $predictionfile | sed '1d' | sed 's/"//g' | sed -e 's/^[ \t]*//;s/[ \t]*$//' &gt;$Selected_Ids ;
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
6 </command>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
7
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
8 <inputs>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
9 <param name="predictionfile" type="data" format="txt,csv,tabular" label="Predition Result File" help ="upload gcac prediction result file obtained from the tool 'Extract_Compound_IDs_From_Prediction_Result_based_on_scores'" />
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
10 </inputs>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
11 <outputs>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
12 <data name="Selected_Ids" type="data" format="txt" label="Ids-${predictionfile.name}" />
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
13 </outputs>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
14 <help>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
15 </help>
5bc834b2ee27 Uploaded
deepakjadmin
parents:
diff changeset
16 </tool>