annotate seqtk_nml.xml @ 1:f49992c79fe4 draft default tip

planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
author nml
date Thu, 02 Nov 2017 14:09:07 -0400
parents e1867440ed36
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
1 <tool id="seqtk_nml_sample" name="seqTK Sample NML" version="1.0.1">
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
2 <description>Runs seqTK sample if raw coverage is above user defined threshold </description>
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
3 <requirements>
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
4 <requirement type="package" version="1.2">seqtk</requirement>
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
5 <requirement type="package" version="1.6.924">perl-bioperl</requirement>
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
6 </requirements>
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
8 perl '$__tool_directory__/seqtk_nml.pl'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
9
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
10 --ref '$fastar'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
11
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
12 #if $single_or_paired.type == "single"
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
13 --type single
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
14 --forward '$input_se'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
15 --out_forward '$output'
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
16
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
17 #elif $single_or_paired.type == "paired"
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
18 --type paired
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
19 --forward '$single_or_paired.forward_pe'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
20 --reverse '$single_or_paired.reverse_pe'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
21 --out_forward '$output'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
22 --out_reverse '$output_rev'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
23
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
24 #else
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
25 --type paired
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
26 --forward '$single_or_paired.fastq_collection.forward'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
27 --reverse '$single_or_paired.fastq_collection.reverse'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
28 --out_forward '$output_collection.forward'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
29 --out_reverse '$output_collection.reverse'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
30 #end if
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
31
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
32 --cov '$coverage'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
33 --log '$log'
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
34
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
35 ]]></command>
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
36 <inputs>
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
37 <conditional name="single_or_paired">
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
38 <param name="type" type="select" label="Read type">
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
39 <option value="single">Single-end</option>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
40 <option value="paired">Paired-end</option>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
41 <option value="collection">Collection Paired-end</option>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
42 </param>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
43 <when value="single">
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
44 <param name="input_se" type="data" format="fastqsanger" label="Single end read file(s)"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
45 </when>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
46 <when value="paired">
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
47 <param name="forward_pe" type="data" format="fastqsanger" label="Forward paired-end read file"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
48 <param name="reverse_pe" type="data" format="fastqsanger" label="Reverse paired-end read file"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
49 </when>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
50 <when value="collection">
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
51 <param name="fastq_collection" type="data_collection" label="Paired-end reads collection" optional="false" format="txt" collection_type="paired" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
52 </when>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
53 </conditional>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
54 <param name="fastar" type="data" label="Fasta Reference File" format="fasta" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
55 <param name="coverage" type="integer" label="Desired Coverage" value="50" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
56 </inputs>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
57 <outputs>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
58 <data format="fastqsanger" name="output" label="SubSampled Fastq" >
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
59 <filter>single_or_paired['type']!="collection"</filter>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
60 </data>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
61 <data format="fastqsanger" name="output_rev" label="SubSampled Fastq Reverse">
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
62 <filter>single_or_paired['type']=="paired"</filter>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
63 </data>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
64 <collection name="output_collection" type="paired" label="SubSampled Fastqs">
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
65 <data name="forward" format="fastqsanger"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
66 <data name="reverse" format="fastqsanger"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
67 <filter>single_or_paired['type']=="collection"</filter>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
68 </collection>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
69 <data format="txt" name="log" label="Log file"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
70 </outputs>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
71
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
72 <tests>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
73 <test>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
74 <param name="type" value="paired" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
75 <param name="forward_pe" value="inputforward.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
76 <param name="reverse_pe" value="inputreverse.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
77 <param name="fastar" value="testref.fasta"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
78 <param name="coverage" value="50" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
79 <output name="output" file="outputforward.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
80 <output name="output_rev" file="outputreverse.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
81 <output name="log" file="lognosample.log" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
82 </test>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
83 <test>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
84 <param name="type" value="paired" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
85 <param name="forward_pe" value="inputforward.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
86 <param name="reverse_pe" value="inputreverse.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
87 <param name="fastar" value="testref.fasta"/>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
88 <param name="coverage" value="25" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
89 <output name="output" file="outputdownsamepleforward.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
90 <output name="output_rev" file="outputdownsameplereverse.fastq" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
91 <output name="log" file="logdownsample.log" />
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
92 </test>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
93 </tests>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
94 <help><![CDATA[
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
95 ============
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
96 What it does
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
97 ============
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
98 Calculates raw coverage. If the raw coverage is greater than desired coverage, runs seqTK sample to generate downsampled reads.
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
99
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
100 =====
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
101 Usage
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
102 =====
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
103
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
104 **Parameters**
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
105 - Fastq reads (single end, paired end, or paired end collection)
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
106 - Fasta reference file
0
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
107
e1867440ed36 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 008f4667b70be22e9ddf496738b3f74bb942ed28
nml
parents:
diff changeset
108 **Options**
1
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
109 - Desired coverage (50)
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
110 ]]></help>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
111 <citations>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
112 <citation type="doi">10.1371/journal.pone.0163962</citation>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
113 </citations>
f49992c79fe4 planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 969557932bff35913d93068d16facb8da4d64123
nml
parents: 0
diff changeset
114 </tool>