Mercurial > repos > anmoljh > candidate_compound_select
comparison select_compound.xml @ 0:557baa97ed72 draft
planemo upload commit e713bcfa1b1690f9a21ad0bd796c2d385f646e66-dirty
| author | anmoljh |
|---|---|
| date | Mon, 12 Jun 2017 08:59:52 -0400 |
| parents | |
| children | 3bd5537cc516 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:557baa97ed72 |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="select_compound" name="Select Compounds based of score" version="1.0"> | |
| 3 <description>This tool selects compounds from prediction result based on given score</description> | |
| 4 | |
| 5 <stdio> | |
| 6 <exit_code range="1:" /> | |
| 7 </stdio> | |
| 8 | |
| 9 <command interpreter="Rscript">select_compound.R $predictionfile $LT $GT $type $SelectedCompound </command> | |
| 10 | |
| 11 <inputs> | |
| 12 <param name="predictionfile" type="data" format="txt,tabular,csv" label="Predition Result File" help ="upload gcac prediction result file " /> | |
| 13 <param name="type" type="select" label="Active/Positive or Inactive/Negative" help ="select type of molecule"> | |
| 14 <option value="Active" selected="True">Active/Positive</option> | |
| 15 <option value="Inactive">Inactive/Negative</option> | |
| 16 </param> | |
| 17 <param name="GT" type="float" value="0.5" label="Score greater than and equal to" help ="define value above which compound selected default is 0.5" /> | |
| 18 <param name="LT" type="float" value="1.0" label="Score less than and equal to" help ="define value below which compound selected default is 1" /> | |
| 19 </inputs> | |
| 20 | |
| 21 <outputs> | |
| 22 <data name="SelectedCompound" format="txt" label="Refind-${predictionfile.name}" /> | |
| 23 </outputs> | |
| 24 <tests> | |
| 25 <test> | |
| 26 <param name="predictionfile" value="prediction_set_result.txt" /> | |
| 27 <param name="type" value="Active" /> | |
| 28 <param name="GT" value="0.5" /> | |
| 29 <param name="LT" value="1.0" /> | |
| 30 <output name="SelectedCompound" file="selected_prediction_set_result.txt" compare="sim_size" delta="4000" /> | |
| 31 </test> | |
| 32 </tests> | |
| 33 <help></help> | |
| 34 </tool> |
