annotate hapog.xml @ 3:5287036a797a draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
author iuc
date Fri, 05 Apr 2024 09:39:36 +0000
parents ee0d6e789958
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
1 <tool id="hapog" name="Hapo-G" profile="21.05" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
2 <description>genome polishing</description>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
3 <macros>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
4 <token name="@TOOL_VERSION@">1.3.8</token>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
6 </macros>
2
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
7 <xrefs>
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
8 <xref type="bio.tools">hapog</xref>
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
9 </xrefs>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
10 <requirements>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
11 <requirement type="package" version="@TOOL_VERSION@">hapog</requirement>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
12 </requirements>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
13 <command detect_errors="exit_code"><![CDATA[
2
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
14 ##Compute samtools memory settings like in samtools_sort
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
15 ##use only 75% of available: https://github.com/samtools/samtools/issues/831
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
16 addmemory=\${GALAXY_MEMORY_MB_PER_SLOT:-768} &&
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
17 ((addmemory=addmemory*75/100)) &&
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
18 hapog
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
19 --genome '${genome}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
20 --output output/
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
21
2
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
22 --threads \${GALAXY_SLOTS:-1}
ee0d6e789958 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 0da1ca313d02ca780a671247e434a424fa67887b
iuc
parents: 1
diff changeset
23 --samtools-mem \$addmemory"M"
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
24
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
25 #if str( $reads.type ) == "short":
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
26 #for $i in $reads.pe1
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
27 --pe1 '${i}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
28 #end for
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
29 #for $i in $reads.pe2
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
30 --pe2 '${i}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
31 #end for
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
32 #elif str( $reads.type ) == "short_collection":
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
33 #for $i in $reads.pecol
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
34 --pe1 '${i.forward}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
35 --pe2 '${i.reverse}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
36 #end for
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
37 #elif str( $reads.type ) == "long":
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
38 --single '${single}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
39 #elif str( $reads.type ) == "bam":
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
40 -b '${bam}'
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
41 #end if
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
42
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
43 $u
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
44 ]]></command>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
45 <inputs>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
46 <param argument="--genome" type="data" format="fasta" label="Genome assembly to polish"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
47 <conditional name="reads">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
48 <param name="type" type="select" label="Type of data used for polishing">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
49 <option value="short">Short (paired) reads</option>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
50 <option value="short_collection">Short (paired) reads collection</option>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
51 <option value="long">Long reads</option>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
52 <option value="bam">Pre-aligned reads (BAM)</option>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
53 </param>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
54 <when value="short">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
55 <param argument="--pe1" type="data" format="fastq,fastq.gz" multiple="true" label="First set of short reads"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
56 <param argument="--pe2" type="data" format="fastq,fastq.gz" multiple="true" label="Second set of short reads"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
57 </when>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
58 <when value="short_collection">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
59 <param name="pecol" type="data_collection" collection_type="paired" format="fastq,fastq.gz" label="Paired collection of short reads"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
60 </when>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
61 <when value="long">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
62 <param argument="--single" type="data" format="fastq,fastq.gz" label="Long reads"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
63 </when>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
64 <when value="bam">
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
65 <param name="bam" type="data" format="bam" label="Pre-aligned reads"/>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
66 </when>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
67 </conditional>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
68 <param argument="-u" type="boolean" truevalue="-u" falsevalue="" checked="False" label="Include unpolished sequences in final output"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
69 </inputs>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
70 <outputs>
1
7d56a813fd24 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 34255461a89adf6cdd9e781ac1fe47e8c41227ba
iuc
parents: 0
diff changeset
71 <data format="fasta" name="output" label="${tool.name}: polished assembly from ${on_string}" from_work_dir="output/hapog_results/hapog.fasta"/>
7d56a813fd24 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 34255461a89adf6cdd9e781ac1fe47e8c41227ba
iuc
parents: 0
diff changeset
72 <data format="tsv" name="changes" label="${tool.name}: report of changes" from_work_dir="output/hapog_results/hapog.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
73 </outputs>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
74 <tests>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
75 <test>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
76 <param name="genome" value="genome.fa"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
77 <conditional name="reads">
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
78 <param name="type" value="short"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
79 <param name="pe1" value="fastq1.fq"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
80 <param name="pe2" value="fastq2.fq"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
81 </conditional>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
82 <output name="output" file="hapog_short.fasta"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
83 <output name="changes" file="hapog_short.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
84 </test>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
85 <test>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
86 <param name="genome" value="genome.fa"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
87 <conditional name="reads">
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
88 <param name="type" value="short"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
89 <param name="pe1" value="fastq1.fq.gz"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
90 <param name="pe2" value="fastq2.fq.gz"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
91 </conditional>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
92 <output name="output" file="hapog_short.fasta"/>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
93 <output name="changes" file="hapog_short.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
94 </test>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
95 <test>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
96 <param name="genome" value="genome.fa"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
97 <conditional name="reads">
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
98 <param name="type" value="long"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
99 <param name="single" value="fastq1.fq"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
100 </conditional>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
101 <output name="output" file="hapog_long.fasta"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
102 <output name="changes" file="hapog_long.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
103 </test>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
104 <test>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
105 <param name="genome" value="genome.fa"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
106 <conditional name="reads">
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
107 <param name="type" value="long"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
108 <param name="single" value="fastq1.fq.gz"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
109 </conditional>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
110 <output name="output" file="hapog_long.fasta"/>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
111 <output name="changes" file="hapog_long.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
112 </test>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
113 <test>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
114 <param name="genome" value="genome.fa"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
115 <conditional name="reads">
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
116 <param name="type" value="bam"/>
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
117 <param name="bam" value="input.bam"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
118 </conditional>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
119 <output name="output" file="hapog_bam.fasta"/>
3
5287036a797a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit 8e54473840ee1238da9cb8a77cf136f00b40e4e7
iuc
parents: 2
diff changeset
120 <output name="changes" file="hapog_bam.changes"/>
0
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
121 </test>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
122 </tests>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
123 <help><![CDATA[
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
124 Hapo-G uses alignments produced by BWA (or any other aligner that produces SAM files) to polish the consensus of a genome assembly.
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
125 ]]></help>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
126 <citations>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
127 <citation type="doi">10.1093/nargab/lqab034</citation>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
128 </citations>
c61bc8bb5f1e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog commit e0b3195d9d7ae754bcc61c50bf127e13c9b1e9dc
iuc
parents:
diff changeset
129 </tool>