Mercurial > repos > recetox > mfassignr_recallist
comparison mfassignr_recallist.xml @ 0:6e1813883a9a draft
planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr commit 87bb82e07c57753a71d9ce4efc757c4367200d15
author | recetox |
---|---|
date | Thu, 15 Aug 2024 12:00:39 +0000 |
parents | |
children | ddb9d330ecc0 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:6e1813883a9a |
---|---|
1 <tool id="mfassignr_recallist" name="MFAssignR RecalList" version="@TOOL_VERSION@+galaxy0" profile="23.0"> | |
2 <description>Identification of candidate series for recalibration.</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 <import>help.xml</import> | |
6 </macros> | |
7 <edam_topics> | |
8 <edam_topic>topic_3172</edam_topic> | |
9 </edam_topics> | |
10 <edam_operations> | |
11 <edam_operation>operation_3627</edam_operation> | |
12 </edam_operations> | |
13 <expand macro="creator" /> | |
14 <expand macro="requirements" /> | |
15 <command detect_errors="exit_code"><![CDATA[ | |
16 Rscript '${run_script}' | |
17 ]]></command> | |
18 <configfiles> | |
19 <configfile name="run_script"><![CDATA[ | |
20 df <- read.delim("$input_file", sep="\t") | |
21 recal <- MFAssignR::RecalList( | |
22 df = df | |
23 ) | |
24 | |
25 write.table(recal, file = '$recal_series', row.names= FALSE, sep = "\t") | |
26 ]]></configfile> | |
27 </configfiles> | |
28 <inputs> | |
29 <param name="input_file" type="data" format="tabular" label="Input data" | |
30 help= "Input data frame - output from MFAssign or MFAssignCHO. Recommended are 'Unambiguous' assignments."/> | |
31 </inputs> | |
32 <outputs> | |
33 <data name="recal_series" format="tabular" label="Recalibration series by ${tool.name} on ${on_string}"/> | |
34 </outputs> | |
35 <tests> | |
36 <test> | |
37 <param name="input_file" value="mfassigncho/unambig.tabular" /> | |
38 <output name="recal_series" file="recallist/recal_series.tabular" lines_diff="100"/> | |
39 </test> | |
40 </tests> | |
41 <help><![CDATA[ | |
42 @RECALLIST_HELP@ | |
43 | |
44 @GENERAL_HELP@ | |
45 ]]></help> | |
46 <expand macro="citations" /> | |
47 </tool> |