annotate tracy_decompose.xml @ 0:6ec40b104f9d draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
author iuc
date Tue, 12 Oct 2021 14:21:06 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
1 <tool id="tracy_decompose" name="tracy Decompose" version="@TOOL_VERSION@+galaxy0" profile="20.09">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
2 <description>heterozygous mutations (and call variants)</description>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
3 <macros>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
5 </macros>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
6 <expand macro="requirements" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
7 <expand macro="version_command" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
9 #if $index_genome == True
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
10 bgzip -c '$genome' > genome.fasta.gz ;
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
11 tracy index -o genome.fasta.fm9 genome.fasta.gz &&
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
12 #set refgenome = "genome.fasta.gz"
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
13 #else
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
14 #set refgenome = $genome
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
15 #end if
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
16 tracy decompose
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
17 --genome '$refgenome'
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
18 $callVariants
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
19 --pratio $pratio
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
20 --kmer $kmer.kmer
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
21 --support $kmer.support
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
22 --maxindel $maxindel
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
23 --trim $trim.trim
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
24 --trimLeft $trim.trimLeft
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
25 --trimRight $trim.trimRight
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
26 --linelimit $linelimit
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
27 --gapopen $alignment.gapopen
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
28 --gapext $alignment.gapext
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
29 --match $alignment.match
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
30 --mismatch $alignment.mismatch
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
31 '$tracefile'
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
32 ]]></command>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
33 <inputs>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
34 <param argument="--genome" type="data" format="fasta,ab1,scf" label="FASTA, ABI or SCF format genome" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
35 <param name="tracefile" type="data" format="ab1,scf" label="Sanger chromatogram tracefile to align" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
36 <param name="index_genome" type="boolean" label="Pre-index the reference" help="Pre-indexing builds a FM index of the reference. This is required for sequences larger than 50 kilobases" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
37 <param argument="--callVariants" type="boolean" truevalue="--callVariants" falsevalue="" label="Call variants in chromatogram" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
38 <!-- annotate option is not yet supported -->
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
39 <expand macro="common_options" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
40 <expand macro="kmer_options" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
41 <expand macro="alignment_options" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
42 <expand macro="trim_options" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
43 <expand macro="optional_outputs" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
44 </inputs>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
45 <outputs>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
46 <expand macro="json_output" toolname="decompose" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
47 <data name="out_fasta1" format="fasta" from_work_dir="out.align1" label="tracy decompose allele1 on ${on_string}" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
48 <data name="out_fasta2" format="fasta" from_work_dir="out.align2" label="tracy decompose allele2 on ${on_string}" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
49 <data name="out_fasta3" format="fasta" from_work_dir="out.align3" label="tracy decompose both alleles on ${on_string}" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
50 <expand macro="tabular_output" toolname="decompose" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
51 <data name="out_bcf" format="bcf" from_work_dir="out.bcf" label="tracy decompose variants on ${on_string}">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
52 <filter>callVariants</filter>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
53 </data>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
54 </outputs>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
55 <tests>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
56 <test expect_num_outputs="3">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
57 <param name="genome" value="reference1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
58 <param name="tracefile" value="input1.ab1" ftype="ab1" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
59 <output name="out_fasta1" value="out1.align1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
60 <output name="out_fasta2" value="out1.align2.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
61 <output name="out_fasta3" value="out1.align3.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
62 </test>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
63 <test expect_num_outputs="4">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
64 <param name="genome" value="reference1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
65 <param name="tracefile" value="input1.ab1" ftype="ab1" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
66 <param name="callVariants" value="true" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
67 <output name="out_fasta1" value="out1.align1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
68 <output name="out_fasta2" value="out1.align2.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
69 <output name="out_fasta3" value="out1.align3.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
70 <output name="out_bcf" compare="sim_size" value="out1.bcf" ftype="bcf" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
71 </test>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
72 <test expect_num_outputs="5">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
73 <param name="genome" value="reference1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
74 <param name="tracefile" value="input1.ab1" ftype="ab1" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
75 <param name="callVariants" value="true" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
76 <param name="optional_outputs" value="json" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
77 <output name="out_json" ftype="json">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
78 <assert_contents>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
79 <has_text text='"peakA": [5, 5, 5, 5, 5, 4' />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
80 </assert_contents>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
81 </output>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
82 <output name="out_fasta1" value="out1.align1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
83 <output name="out_fasta2" value="out1.align2.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
84 <output name="out_fasta3" value="out1.align3.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
85 <output name="out_bcf" compare="sim_size" value="out1.bcf" ftype="bcf" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
86 </test>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
87 <test expect_num_outputs="5">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
88 <param name="genome" value="reference1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
89 <param name="tracefile" value="input1.ab1" ftype="ab1" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
90 <param name="callVariants" value="true" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
91 <param name="optional_outputs" value="tabular" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
92 <output name="out_stats" ftype="tabular">
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
93 <assert_contents>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
94 <has_text_matching expression="13\s1\s2\s2\s11\s2\sT\sG\sN\s5\sY" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
95 </assert_contents>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
96 </output>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
97 <output name="out_fasta1" value="out1.align1.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
98 <output name="out_fasta2" value="out1.align2.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
99 <output name="out_fasta3" value="out1.align3.fasta" ftype="fasta" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
100 <output name="out_bcf" compare="sim_size" value="out1.bcf" ftype="bcf" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
101 </test>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
102 </tests>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
103 <help><![CDATA[
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
104 **What this does**
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
105
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
106 Double-peaks in a trace file can cause alignment issues. This tool uses tracy_ to decompose
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
107 heterozygous variants in a trace file into two separate alleles. Each allele is then aligned
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
108 separately to the reference sequence.
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
109
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
110 Optionally, variants between the trace file and the reference are also output in BCF format.
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
111
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
112 @pratio@
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
113
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
114 @trim_options@
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
115
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
116 @alignment@
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
117
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
118 Read more here_.
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
119
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
120 .. _tracy: https://github.com/gear-genomics/tracy
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
121 .. _here: https://www.gear-genomics.com/docs/tracy/cli/#deconvolution-of-heterozygous-mutations
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
122 ]]></help>
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
123 <expand macro="citations" />
6ec40b104f9d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
124 </tool>