Mercurial > repos > davidvanzessen > experimental_design_igg
diff experimental_design.xml @ 2:f2c4c7151016 draft
Uploaded
author | davidvanzessen |
---|---|
date | Mon, 07 Jul 2014 09:45:10 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/experimental_design.xml Mon Jul 07 09:45:10 2014 -0400 @@ -0,0 +1,29 @@ +<tool id="experimentaldesign_igg" name="ExperimentalDesign" version="1.0"> + <description> </description> + <command interpreter="python"> + experimental_design.py + #for $i, $f in enumerate($patients) + "$f.id" + #for $j, $g in enumerate($f.samples) + ${g.sample} + #end for + + #end for + --output $out_file + </command> + <inputs> + <repeat name="patients" title="Patient" min="1" default="1"> + <repeat name="samples" title="Sample" min="1" default="1"> + <param name="sample" format="tabular" type="data" label="Sample to Process" /> + </repeat> + <param name="id" type="text" label="ID" /> + </repeat> + </inputs> + <outputs> + <data format="tabular" name="out_file" /> + </outputs> + <help> + Step 3 of the Immune Repertoire tools, merges the parsed reports generated in step 2 into one file with an Sample ID. + </help> + +</tool>