comparison ALL.xml @ 0:ed6885c85660 draft

Uploaded
author davidvanzessen
date Wed, 31 Aug 2016 05:31:47 -0400
parents
children 75853bceec00
comparison
equal deleted inserted replaced
-1:000000000000 0:ed6885c85660
1 <tool id="prisca" name="PRISCA" version="1.0">
2 <description>PRecISe Clonal Analysis</description>
3 <command interpreter="bash">
4 wrapper.sh $in_file $out_file $out_file.files_path $min_freq $min_cells $merge_on
5 </command>
6 <inputs>
7 <param name="in_file" format="tabular" type="data" label="Data to Process" />
8 <param name="min_freq" type="text" label="Minimum Frequency, between 0 and 100 in percentage" value='0'/>
9 <param name="min_cells" type="text" label="Minimum cell count" value='0'/>
10 <param name="merge_on" type="select" label="Merge On">
11 <option value="Clone_Sequence">Clone_Sequence</option>
12 <option value="V_J_CDR3">V+J+CDR3</option>
13 </param>
14 </inputs>
15 <outputs>
16 <data format="html" name="out_file" />
17 </outputs>
18 <help>
19 Takes a tabular file as input, it needs to following columns:
20
21 +----------------------------------+----------------------------------------------+
22 | **Column name** | **Column contents** |
23 +----------------------------------+----------------------------------------------+
24 | Patient | The patient ID |
25 +----------------------------------+----------------------------------------------+
26 | Sample | The Sample ID, one, two or three per Patient |
27 +----------------------------------+----------------------------------------------+
28 | Cell_Count | The cell count within a sample/loci |
29 +----------------------------------+----------------------------------------------+
30 | Clone_Molocule_Count_From_Spikes | The count of a clone |
31 +----------------------------------+----------------------------------------------+
32 | Log10_Frequency | The frequency of a clone in log10 |
33 +----------------------------------+----------------------------------------------+
34 | J_Segment_Major_Gene | The J Gene of this clone |
35 +----------------------------------+----------------------------------------------+
36 | V_Segment_Major_Gene | The V Gene of this clone |
37 +----------------------------------+----------------------------------------------+
38 | Clone_Sequence | The entire sequence |
39 +----------------------------------+----------------------------------------------+
40 | CDR3_Sense_Sequence | The CDR3 sequence region. |
41 +----------------------------------+----------------------------------------------+
42
43
44 And generate a detailed HTML report on the sequences found in indiviual samples and in both samples.
45 </help>
46 </tool>