Mercurial > repos > davidvanzessen > argalaxy_tools
diff mutation_analysis.xml @ 11:0510cf1f7cbc draft
Uploaded
| author | davidvanzessen |
|---|---|
| date | Tue, 04 Aug 2015 09:59:26 -0400 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mutation_analysis.xml Tue Aug 04 09:59:26 2015 -0400 @@ -0,0 +1,42 @@ +<tool id="mutation_analysis_shm" name="Mutation Analysis" version="1.0"> + <description></description> + <command interpreter="bash"> + wrapper.sh $in_file $method $out_file $out_file.files_path ${in_file.name} ${include_fr1} $functionality $unique + </command> + <inputs> + <param name="in_file" type="data" label="IMGT zip file to be analysed" /> + <param name="method" type="select" label="Identification method" help="" > + <option value="custom" selected="true">custom</option> + <option value="blastn">blastn</option> + </param> + <param name="include_fr1" type="select" label="Include mutations in FR1 region" help="" > + <option value="yes">yes</option> + <option value="no" selected="true">no</option> + </param> + <param name="functionality" type="select" label="Functionality filter" help="" > + <option value="productive" selected="true">Productive: Keep "productive" and "productive (see comment)"</option> + <option value="unproductive">Unproductive: Keep "unproductive" and "unproductive (see comment)"</option> + <option value="remove_unknown">Remove "unknown" and "unknown (see comment)"</option> + <option value="dont_filter">Don't filter</option> + </param> + + <param name="unique" type="select" label="Remove duplicates based on" help="" > + <option value="AA.JUNCTION_V_subclass" selected="true">AA.JUNCTION + V + subclass</option> + <option value="AA.JUNCTION_subclass">AA.JUNCTION + subclass</option> + <option value="V_subclass">V + subclass</option> + <option value="AA.JUNCTION_V">AA.JUNCTION + V</option> + <option value="AA.JUNCTION">AA.JUNCTION</option> + <option value="none">Don't remove duplicates</option> + </param> + + </inputs> + <outputs> + <data format="html" name="out_file" label = "Mutation analysis on ${in_file.name}"/> + </outputs> + <help> + Takes an IMGT zip (http://www.imgt.org/HighV-QUEST/search.action) file and creates a summarization of the mutation analysis. + </help> + <requirements> + <requirement type="package" version="1.0">blastn</requirement> + </requirements> +</tool>
