view tool12.xml @ 0:68300206e90d draft default tip

Uploaded
author deepakjadmin
date Thu, 05 Nov 2015 02:41:30 -0500
parents
children
line wrap: on
line source

<tool id="acaretreg001" name="Concatenate descriptor and response file">
<description>
This Tool Concatenates Descriptor file and response value conatining file for regression analysis
 </description>
 <!--command interpreter="bash">step1.sh $file1 $output1 </command-->
 <command interpreter="">/usr/bin/paste -d ',' $descriptors $response > $completefile </command>
 <inputs>
 <param format="csv" name="descriptors" type="data" label="Select descriptor file " help="CSV format" />
 <param format="txt" name="response" type="data" label="Select response file " help="CSV format" />
 </inputs>
 <outputs>
 <data format="csv" name="completefile" label="Descriptor file with response " />
 </outputs>
<help>
.. class:: infomark

**Input descriptor "csv file" format must be as given below :**


Name,feature1,feaure2,feature3,..,featureN


cpd1,623,0.4,3.4,..,..
                      
cpd2,234,0.9,5.6,..,.. 

cpd3,567,0.5,3.14,..,..

cpd4,231,0.1,1.2,..,.. 

here "cpd" stands for name or id of a compound. It is rowname with no column header.     


**Input response csv file must be as given below :**

Response

0.21

0.36

0.98

1.39

</help>
</tool>