annotate yaha.xml @ 4:e61ba2a4b8d9 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 442d981e7d3a5634063cfc26bc29c83d88d697cd-dirty
author mvdbeek
date Thu, 05 Jan 2017 08:24:22 -0500
parents bcba667aef5b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
1 <tool id="yaha" name="yaha" version="0.1.83">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
2 <description>fast and flexible long-read alignment with optimal breakpoint detection</description>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
3 <macros>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
4 <import>macros.xml</import>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
5 </macros>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
6 <requirements>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
7 <requirement type="package" version="0.1.83">yaha</requirement>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
8 <requirement type="package" version="0.6.5">sambamba</requirement>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
9 </requirements>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
10 <version_command><![CDATA[yaha 2>&1| head -n1]]></version_command>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
11 <command detect_errors="aggressive"><![CDATA[
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
12 #if $reference_genome.reference_genome_source == "history" or "reference":
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
13 #if $reference_genome.reference_genome_source == "history":
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
14 ln -f -s "$reference_genome.history_item" genome.fa &&
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
15 #elif $reference_genome.reference_genome_source == "reference":
2
37cac55c1081 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 41b852cad408786bc7049f3c002f85d1aebda063-dirty
mvdbeek
parents: 1
diff changeset
16 ln -f -s "$reference_genome.fasta_item.fields.path" genome.fa &&
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
17 #end if
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
18 yaha -g genome.fa -H $reference_genome.maxHitsIndex -L $reference_genome.wordLenIndex -S $reference_genome.skipDistanceIndex &&
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
19 #set maxHitsIndex = "%s%s" % ("0" * (5 - len(str($reference_genome.maxHitsIndex))), $reference_genome.maxHitsIndex)
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
20 #set skipdist = $reference_genome.skipDistanceIndex if len(str($reference_genome.skipDistanceIndex)) > 1 else "0%s" % $reference_genome.skipDistanceIndex
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
21 #set wordLenIndex = $reference_genome.wordLenIndex if len(str($reference_genome.wordLenIndex)) > 1 else "0%s" % $reference_genome.wordLenIndex
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
22 #set index_path = "genome.X%s_%s_%sS" % ($wordLenIndex, $skipdist, $maxHitsIndex)
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
23 #else:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
24 #pass ## augment with pre-built index if considered useful
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
25 #end if
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
26 yaha
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
27 -x '$index_path'
3
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
28 #if str($readtype.single_or_paired) == "se":
4
e61ba2a4b8d9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 442d981e7d3a5634063cfc26bc29c83d88d697cd-dirty
mvdbeek
parents: 3
diff changeset
29 -q '$readtype.input_single'
3
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
30 #else:
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
31 -q <(cat '$readtype.input_paired.forward' '$readtype.input_paired.reverse')
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
32 #end if
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
33 $outformat stdout
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
34 -t \${GALAXY_SLOTS:-1}
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
35 -BW $BW
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
36 -G $G
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
37 -H $H
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
38 -M $M
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
39 -MD $MD
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
40 -P $P
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
41 -X $X
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
42 #if $ags.use_ags == "yes":
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
43 -AGS Y
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
44 -GEC $ags.GEC
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
45 -GOC $ags.GOC
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
46 -MS $ags.MS
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
47 -RC $ags.RC
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
48 #else:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
49 -AGS N
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
50 #end if
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
51 #if $oqc.use_oqc == "yes":
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
52 -OQC Y
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
53 -BP $oqc.BP
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
54 -MGDP $oqc.MGDP
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
55 -MNO $oqc.MNO
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
56 #else:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
57 -OQC N
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
58 #end if
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
59 #if $fbs.use_fbs == "yes":
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
60 -FBS Y
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
61 -PRL $fbs.PRL
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
62 -PSS $fbs.PSS
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
63 #else:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
64 -FBS N
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
65 #end if
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
66 | sambamba view -S -f bam /dev/stdin | sambamba sort -o '$alignment' -l 6 -t \${GALAXY_SLOTS:-1} /dev/stdin
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
67 ]]></command>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
68 <inputs>
3
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
69 <conditional name="readtype">
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
70 <param name="single_or_paired" type="select" label="Single-end or paired-end reads?" help="Note: yaha does not take mate-pair information into account. If you select pe_collection, forward and reverse reads will be merged.">
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
71 <option value="se" selected="true">Single-end</option>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
72 <option value="pe_collection">Paired-end (as collection)</option>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
73 </param>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
74 <when value="se">
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
75 <param format="fastqsanger,fastqsanger.gz" name="input_single" type="data" label="Single-end FASTQ reads" help="(-q)" />
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
76 </when>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
77 <when value="pe_collection">
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
78 <param format="fastqsanger,fastqsanger.gz" name="input_paired" type="data_collection" collection_type="paired" label="Paired-end FASTQ reads as paired collection" help="(-q)"/>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
79 </when>
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
80 </conditional>
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
81 <conditional name="reference_genome">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
82 <param help="Built-in references were created using default options" label="Source for the reference genome to align against" name="reference_genome_source" type="select">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
83 <!-- Write a datamanager if prebuilt genomes are important
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
84 <option selected="True" value="indexed">Use a built-in index</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
85 -->
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
86 <option value="history">Use a genome from history to build an index</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
87 <option value="reference">Use a built-in genome to build an index</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
88 </param>
3
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
89 <!--
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
90 <when value="indexed">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
91 <param help="If your genome of interest is not listed, contact the Galaxy team" label="Select a reference genome" name="index" type="select">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
92 <options from_data_table="yaha_indexes">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
93 <filter column="2" type="sort_by" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
94 <validator message="No genomes are available for the selected input dataset" type="no_options" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
95 </options>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
96 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
97 </when>
3
bcba667aef5b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 287ffa5c3b1d4f08c7633bddd9dd98925a5483c4-dirty
mvdbeek
parents: 2
diff changeset
98 -->
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
99 <when value="history">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
100 <param format="fasta" label="Select the reference genome" name="history_item" type="data" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
101 <expand macro="index_parameter"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
102 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
103 <when value="reference">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
104 <param label="Select a reference genome" name="fasta_item" type="select">
1
584220a3c520 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit c9410c0c19f5676e1efda855d2e5b4d2129f8bee-dirty
mvdbeek
parents: 0
diff changeset
105 <options from_data_table="all_fasta">
0
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
106 <filter column="2" type="sort_by"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
107 </options>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
108 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
109 <expand macro="index_parameter"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
110 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
111 </conditional>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
112 <param name="outformat" type="select" label="Produce alignment with softclipping?">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
113 <option value="-osh">Produce alignment with hard clipping</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
114 <option value="-oss">Produce alignment with soft clipping</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
115 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
116 <param type="integer" argument="-BW" value="5" min="0" label="BandWidth" help="band size on each side of the diagonal of banded Smith Waterman" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
117 <param type="integer" argument="-G" value="50" min="0" label="maxGap" help="maximum indel size allowed with a single alignment" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
118 <param type="integer" argument="-H" value="650" min="1" max="65525" label="maxHits" help="maximum times a seed is in the reference before it is ignored as too repetitive. To take advantage of k-mer sampling, use the same value of maxHits during index creation and alignment." />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
119 <param type="integer" argument="-M" value="25" min="0" label="minMatch" help="minimum number of bases in seeds to start an alignment" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
120 <param type="integer" argument="-MD" value="50" min="0" label="MaxDesert" help="maximum number of contiguous bases without a seed before alignmment is split" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
121 <param type="float" argument="-P" value="0.9" min="0" label="minPercent-identity" help="minimum matching/alignment-length for a query to be included in output" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
122 <param type="integer" argument="-X" value="25" min="0" label="Xdropoff" help="maximum score dropoff before terminating alignment extensions" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
123 <conditional name="ags">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
124 <param name="use_ags" type="select" label="Use Affine Gap Scoring?">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
125 <option value="yes" selected="True">Yes</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
126 <option value="no">No</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
127 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
128 <when value="yes">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
129 <param argument="-GEC" type="integer" value="2" min="0" label="GapExtensionCost" help="cost for extending a gap (indel)"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
130 <param argument="-GOC" type="integer" value="5" min="0" label="GapOpenCost" help="cost for starting a new gap (indel)"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
131 <param argument="-MS" type="integer" value="1" min="0" label="MatchScore" help="score added for each matching base"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
132 <param argument="-RC" type="integer" value="3" min="0" label="ReplacementCost" help="score subtracted for each mismatched base"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
133 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
134 <when value="no">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
135 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
136 </conditional>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
137 <conditional name="oqc">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
138 <param name="use_oqc" type="select" label="Use Optimal Query Coverage Algorithm?" help="">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
139 <option value="yes" selected="True">Yes (Find a set of alignments are found that optimally cover the query, using the remaining options)</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
140 <option value="no">No (Output all alignments meeting above criteria)</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
141 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
142 <when value="yes">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
143 <param argument="-BP" type="integer" value="5" min="0" label="BreakpointPenalty" help="penalty for inserting a breakpoint in split-read alignment"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
144 <param argument="-MGDP" type="integer" value="5" min="0" label="MaxGenomicDistancePenalty"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
145 <param argument="-MNO" type="integer" value="25" min="0" label="MinNonOverlap" help="minimum number of unshared bases required in each split alignment"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
146 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
147 <when value="no">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
148 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
149 </conditional>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
150 <conditional name="fbs">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
151 <param name="use_fbs" type="select" label="Use Filter By Similarity Algorithm?" help="">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
152 <option value="yes" selected="False">Yes (Output alignments similar to best alignment found using OQC.)</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
153 <option value="no">No</option>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
154 </param>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
155 <when value="yes">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
156 <param argument="-PRL" type="float" value="0.9" min="0" max="1" label="PercentReciprocalLength" help="minimum ratio of overlapping length between similar alignment"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
157 <param argument="-PSS" type="float" value="0.9" min="0" max="1" label="PercentSimilarScore" help="minimum ratio of scores between similar alignments"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
158 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
159 <when value="no">
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
160 </when>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
161 </conditional>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
162 </inputs>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
163 <outputs>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
164 <data name="alignment" format="bam" />
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
165 </outputs>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
166 <tests>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
167 <test>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
168 <param name="q" value="input.fastq" ftype="fastqsanger"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
169 <param name="reference_genome_source" value="history"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
170 <param name="history_item" value="phiX.fa" ftype="fasta"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
171 <output name="alignment" value="alignment.bam" ftype="bam"/>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
172 </test>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
173 </tests>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
174 <help><![CDATA[
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
175 Summary
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
176 -------
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
177
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
178 *yaha* is an open source, flexible, sensitive and accurate DNA aligner
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
179 designed for single-end reads. It supports three major modes of
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
180 operation:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
181
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
182 1. The default “Optimal Query Coverage” (**-OQC**) mode reports the best
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
183 set of alignments that cover the length of each query.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
184 2. Using “Filter By Similarity” (**-FBS**), along with the best set of
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
185 alignments, *yaha* will also output alignments that are highly
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
186 similar to an alignment in the best set.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
187 3. Finally, *yaha* can output all the alignments found for each query.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
188
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
189 The **-OQC** and **-FBS** modes are specifically tuned to form split
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
190 read mappings that can be used to accurately identify structural
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
191 variation events (deletions, duplications, insertions or inversions)
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
192 between the subject query and the reference genome.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
193
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
194 Usage
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
195 -----
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
196
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
197 **OPTIONS:** Default values enclosed in square brackets []
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
198
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
199 ::
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
200
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
201 Input/Output Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
202 -g FILE input genome file to use during index creation (FASTA or nib2)
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
203 -q FILE input file of sequence reads to align (FASTA or FASTQ) [STDIN]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
204 -osh FILE output file for alignment output in SAM format with hard clipping(default) [STDOUT]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
205 -oss FILE output file for alignment output in SAM format with soft clipping [STDOUT]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
206 -x FILE reference index file to use during alignment
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
207 NOTE: At most one of -osh or -oss should be specified.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
208
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
209 Index Creation Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
210 -H INT maxHits: During index creation, seeds occuring more than maxHits times will be sampled [65565]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
211 -L INT seedLength: Length of seed to use. During alignment, seed length is taken from index file [15]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
212 -S INT Skipdistance: Number of bases to skip ahead before forming next seed [1]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
213
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
214 General Alignment Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
215 -BW INT BandWidth: band size on each side of the diagonal of banded Smith Waterman [5]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
216 -G INT maxGap: maximum indel size allowed with a single alignment [50]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
217 -H INT maxHits: maximum times a seed is in the reference before it is ignored as too repetitive [650]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
218 -M INT minMatch: minimum number of bases in seeds to start an alignment [25]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
219 -MD INT MaxDesert: maximum number of contiguous bases without a seed before alignmment is split [50]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
220 -P REAL minPercent-identity: minimum matching/alignment-length for a query to be included in output [0.9]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
221 -X INT Xdropoff: maximum score dropoff before terminating alignment extensions [25]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
222 -t INT numThreads: number of threads used to parallel process reads [1]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
223
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
224 Affine Gap Scoring Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
225 If -AGS is off, a simple edit distance calculation is done.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
226 If on, the remaining options are used:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
227 -AGS BOOL (Y|N) controls use of Affine Gap Scoring [Y].
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
228 -GEC INT GapExtensionCost: cost for extending a gap (indel) [2]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
229 -GOC INT GapOpenCost: cost for starting a new gap (indel) [5]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
230 -MS INT MatchScore: score added for each matching base [1]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
231 -RC INT ReplacementCost: score subtracted for each mismatched base [3]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
232
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
233 Optimal Query Coverage Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
234 If -OQC if off, all alignments meeting above criteria are output.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
235 If -OQC is on, a set of alignments are found that optimally cover the query, using the remaining options.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
236 -OQC BOOL (Y|N) controls use of the Optimal Query Coverage Algorithm.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
237 -BP INT BreakpointPenalty: penalty for inserting a breakpoint in split-read alignment [5]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
238 -MGDP INT MaxGenomicDistancePenalty (5)]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
239 -MNO INT MinNonOverlap: minimum number of unshared bases required in each split alignment [minMatch]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
240 NOTE: The total cost of adding a breakpoint in a split-read mapping is:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
241 BP*MIN(MGDP, Log10(genomic distance between reference loci))
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
242
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
243 Filter By Similarity Options:
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
244 If -FBS is on, the remaining options are used. An alignemnt must satisfy BOTH criteria to be "similar".
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
245 -FBS BOOL (Y|N) controls output of alignments similar to best alignment found using OQC.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
246 -PRL REAL PercentReciprocalLength: minimum ratio of overlapping length between similar alignemnt [0.9]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
247 -PSS REAL PercentSimilarScore: minimum ratio of scores between similar alignments [0.9]
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
248
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
249 See the `User Guide <https://www.dropbox.com/s/7j758vpbaskcq20/YAHA_User_Guide.0.1.83.pdf?dl=0>`__
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
250 for more details on all options and their usage.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
251
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
252 | **Written by:** Greg Faust (gf4ea@virginia.edu)
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
253 | `Ira Hall Lab, University of
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
254 Virginia <http://faculty.virginia.edu/irahall/>`__
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
255
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
256 | **Please cite:**
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
257 | `Faust G.G. and Hall I.M., "*YAHA*: fast and flexible long-read
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
258 alignment with optimal breakpoint detection," *Bioinformatics* Oct.
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
259 2012; **28**\ (19):
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
260 2417-2424. <http://bioinformatics.oxfordjournals.org/content/28/19/2417>`__
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
261 ]]></help>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
262 <citations>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
263 <citation type="doi">10.1093/bioinformatics/bts456</citation>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
264 </citations>
0c888a0686bb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yaha commit 15b31d03f0dbc59ec544d4ce5837ff03b6936c27-dirty
mvdbeek
parents:
diff changeset
265 </tool>