annotate tracy_align.xml @ 0:80e3f678b947 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:20:14 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
1 <tool id="tracy_align" name="tracy Align" version="@TOOL_VERSION@+galaxy0" profile="20.09">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
2 <description>chromatogram to a FASTA reference</description>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
3 <macros>
80e3f678b947 "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>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
5 </macros>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
6 <expand macro="requirements" />
80e3f678b947 "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" />
80e3f678b947 "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[
80e3f678b947 "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
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
10 bgzip -c '$reference' > genome.fasta.gz ;
80e3f678b947 "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 &&
80e3f678b947 "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"
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
13 #else
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
14 #set refgenome = $reference
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
15 #end if
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
16 tracy align
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
17 --reference '$refgenome'
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
18 --pratio $pratio
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
19 --kmer $kmer.kmer
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
20 --support $kmer.support
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
21 --maxindel $maxindel
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
22 --trim $trim.trim
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
23 --trimLeft $trim.trimLeft
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
24 --trimRight $trim.trimRight
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
25 --linelimit $linelimit
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
26 --gapopen $alignment.gapopen
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
27 --gapext $alignment.gapext
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
28 --match $alignment.match
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
29 --mismatch $alignment.mismatch
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
30 '$tracefile'
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
31 ]]></command>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
32 <inputs>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
33 <param argument="--reference" type="data" format="fasta,ab1,scf" label="FASTA, ABI or SCF format reference" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
34 <param name="tracefile" type="data" format="ab1,scf" label="Sanger chromatogram tracefile to align" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
35 <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" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
36 <expand macro="common_options" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
37 <expand macro="kmer_options" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
38 <expand macro="alignment_options" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
39 <expand macro="trim_options" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
40 <expand macro="optional_outputs" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
41 </inputs>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
42 <outputs>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
43 <expand macro="json_output" toolname="align" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
44 <data name="out_report" format="txt" from_work_dir="out.txt" label="tracy align report on ${on_string}" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
45 <data name="out_alignment" format="fasta" from_work_dir="out.align.fa" label="tracy align aligned FASTA on ${on_string}" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
46 <expand macro="tabular_output" toolname="align" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
47 </outputs>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
48 <tests>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
49 <test expect_num_outputs="2">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
50 <param name="reference" value="reference1.fasta" ftype="fasta" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
51 <param name="index_genome" value="false" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
52 <param name="tracefile" value="input1.ab1" ftype="ab1" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
53 <output name="out_report" value="out1.txt" ftype="txt" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
54 <output name="out_alignment" value="out1.fasta" ftype="fasta" lines_diff="2" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
55 </test>
80e3f678b947 "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="2">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
57 <param name="reference" value="reference1.fasta" ftype="fasta" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
58 <param name="index_genome" value="true" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
59 <param name="tracefile" value="input1.ab1" ftype="ab1" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
60 <output name="out_report" value="out2.txt" ftype="txt" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
61 <output name="out_alignment" value="out2.fasta" ftype="fasta" lines_diff="2" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
62 </test>
80e3f678b947 "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">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
64 <param name="reference" value="reference1.fasta" ftype="fasta" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
65 <param name="index_genome" value="false" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
66 <param name="tracefile" value="input1.ab1" ftype="ab1" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
67 <param name="optional_outputs" value="json,tabular" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
68 <output name="out_report" value="out1.txt" ftype="txt" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
69 <output name="out_json" ftype="json">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
70 <assert_contents>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
71 <has_text text='"peakA": [5, 5, 5, 5, 5, 4' />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
72 </assert_contents>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
73 </output>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
74 <output name="out_stats" ftype="tabular">
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
75 <assert_contents>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
76 <has_text_matching expression="13\s1\s2\s2\s11\s2\sT\sG\sN\s5\sY" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
77 </assert_contents>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
78 </output>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
79 <output name="out_alignment" value="out1.fasta" ftype="fasta" lines_diff="2" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
80 </test>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
81
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
82 </tests>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
83 <help><![CDATA[
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
84 **What it does**.
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
85
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
86 Align a chromatogram trace to a reference nucleotide sequence (using tracy_). The reference can either be a FASTA file
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
87 or a trace file.
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
88
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
89 For genomes larger than 50 kilobases, the genome should be indexed before alignment. Indexed genomes use a FM index to find
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
90 matching kmers to anchor the dynamic programming search for an alignment.
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
91
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
92 **NOTE** tracy_ cannot align traces that overlap the ends of a circular genome correctly.
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
93
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
94 @pratio@
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
95
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
96 @trim_options@
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
97
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
98 @alignment@
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
99
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
100 Read more here_.
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
101
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
102 .. _tracy: https://github.com/gear-genomics/tracy
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
103 .. _here: https://www.gear-genomics.com/docs/tracy/cli/#trace-alignment
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
104 ]]></help>
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
105 <expand macro="citations" />
80e3f678b947 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy commit 8a1c82789c6ef97008ecf8f55e060422fd72f217"
iuc
parents:
diff changeset
106 </tool>