0
|
1 <tool id="mutation_analysis_shm" name="Mutation Analysis" version="1.0">
|
|
2 <description></description>
|
|
3 <command interpreter="bash">
|
69
|
4 wrapper.sh $in_file $method $out_file $out_file.files_path ${in_file.name} ${include_fr1} $functionality $unique $naive_output_ca $naive_output_cg $naive_output_cm $filter_uniques $class_filter
|
0
|
5 </command>
|
|
6 <inputs>
|
|
7 <param name="in_file" type="data" label="IMGT zip file to be analysed" />
|
19
|
8 <param name="method" type="select" label="Identification method" help="" >
|
|
9 <option value="custom" selected="true">custom</option>
|
|
10 <option value="blastn">blastn</option>
|
|
11 </param>
|
22
|
12 <param name="include_fr1" type="select" label="Include mutations in FR1 region" help="" >
|
|
13 <option value="yes">yes</option>
|
|
14 <option value="no" selected="true">no</option>
|
|
15 </param>
|
34
|
16 <param name="functionality" type="select" label="Functionality filter" help="" >
|
37
|
17 <option value="productive" selected="true">Productive: Keep "productive" and "productive (see comment)"</option>
|
|
18 <option value="unproductive">Unproductive: Keep "unproductive" and "unproductive (see comment)"</option>
|
38
|
19 <option value="remove_unknown">Remove "unknown" and "unknown (see comment)"</option>
|
37
|
20 <option value="dont_filter">Don't filter</option>
|
34
|
21 </param>
|
66
|
22 <param name="filter_uniques" type="select" label="Filter unique sequences" help="See below for an example.">
|
63
|
23 <option value="yes">Remove uniques (CDR1 + FR2 + CDR2 + FR3 + CDR3)</option>
|
|
24 <option value="yes_c">Remove uniques (CDR1 + FR2 + CDR2 + FR3 + CDR3 + C)</option>
|
|
25 <option value="keep">Keep uniques (CDR1 + FR2 + CDR2 + FR3 + CDR3)</option>
|
|
26 <option value="keep_c">Keep uniques (CDR1 + FR2 + CDR2 + FR3 + CDR3 + C)</option>
|
|
27 <option value="no" selected="true">No</option>
|
|
28 </param>
|
34
|
29 <param name="unique" type="select" label="Remove duplicates based on" help="" >
|
|
30 <option value="AA.JUNCTION_V_subclass" selected="true">AA.JUNCTION + V + subclass</option>
|
|
31 <option value="AA.JUNCTION_subclass">AA.JUNCTION + subclass</option>
|
|
32 <option value="AA.JUNCTION_V">AA.JUNCTION + V</option>
|
|
33 <option value="AA.JUNCTION">AA.JUNCTION</option>
|
|
34 <option value="none">Don't remove duplicates</option>
|
|
35 </param>
|
79
|
36 <param name="class_filter" type="select" label="Class/Subclass filter" help="" >
|
66
|
37 <option value="70_70" selected="true">>70% class and >70% subclass</option>
|
94
|
38 <option value="60_55" selected="true">>60% class and >55% subclass</option>
|
66
|
39 <option value="70_0">>70% class</option>
|
|
40 <option value="60_0">>60% class</option>
|
|
41 </param>
|
47
|
42 <conditional name="naive_output_cond">
|
|
43 <param name="naive_output" type="select" label="Output a file for naive analysis?">
|
|
44 <option value="yes">Yes</option>
|
|
45 <option value="no" selected="true">No</option>
|
|
46 </param>
|
|
47 </conditional>
|
0
|
48 </inputs>
|
|
49 <outputs>
|
|
50 <data format="html" name="out_file" label = "Mutation analysis on ${in_file.name}"/>
|
69
|
51 <data format="tabular" name="naive_output_ca" label = "Naive CA input data from ${in_file.name}" >
|
|
52 <filter>naive_output_cond['naive_output'] == "yes"</filter>
|
|
53 </data>
|
|
54 <data format="tabular" name="naive_output_cg" label = "Naive CG input data from ${in_file.name}" >
|
|
55 <filter>naive_output_cond['naive_output'] == "yes"</filter>
|
|
56 </data>
|
|
57 <data format="tabular" name="naive_output_cm" label = "Naive CM input data from ${in_file.name}" >
|
47
|
58 <filter>naive_output_cond['naive_output'] == "yes"</filter>
|
|
59 </data>
|
0
|
60 </outputs>
|
|
61 <help>
|
66
|
62 Takes an IMGT zip (http://www.imgt.org/HighV-QUEST/search.action) file and creates a summarization of the mutation analysis.
|
|
63
|
|
64 +--------------------------+
|
|
65 | unique filter |
|
|
66 +--------+--------+--------+
|
|
67 | values | remove | keep |
|
|
68 +--------+--------+--------+
|
|
69 | A | A | A |
|
|
70 +--------+--------+--------+
|
|
71 | A | B | B |
|
|
72 +--------+--------+--------+
|
|
73 | B | D | C |
|
|
74 +--------+--------+--------+
|
|
75 | B | | D |
|
|
76 +--------+--------+--------+
|
|
77 | C | | |
|
|
78 +--------+--------+--------+
|
|
79 | D | | |
|
|
80 +--------+--------+--------+
|
|
81 | D | | |
|
|
82 +--------+--------+--------+
|
|
83
|
0
|
84 </help>
|
46
|
85 <requirements>
|
14
|
86 <requirement type="package" version="1.0">blastn</requirement>
|
46
|
87 </requirements>
|
0
|
88 </tool>
|