annotate snippy.xml @ 9:2e9f837e23db draft default tip

planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
author thanhlv
date Tue, 24 Sep 2019 09:59:21 -0400
parents 922cfa35669c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
1 <tool id="snippy" name="snippy" version="@VERSION@+galaxy2">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
2 <description>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
3 Snippy finds SNPs between a haploid reference genome and your NGS sequence reads.
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
4 </description>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
5 <macros>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
6 <import>macros.xml</import>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
7 </macros>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
8 <expand macro="requirements" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
9 <expand macro="version_command" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
10
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
11 <command detect_errors="exit_code"><![CDATA[
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
12
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
13 #if $reference_source.reference_source_selector == 'history'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
14 ln -sf '$reference_source.ref_file' 'ref' &&
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
15 #elif $reference_source.reference_source_selector == 'cached'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
16 ln -sf '$reference_source.ref_file.fields.path' 'ref' &&
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
17 #end if
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
18
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
19 snippy
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
20 --outdir 'out'
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
21 --cpus \${GALAXY_SLOTS:-1}
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
22 --ram \$((\${GALAXY_MEMORY_MB:-4096}/1024))
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
23 --ref 'ref'
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
24 --mapqual $adv.mapqual
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
25 --mincov $adv.mincov
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
26 --minfrac $adv.minfrac
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
27 --minqual $adv.minqual
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
28 #if $adv.rgid
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
29 --rgid '$adv.rgid'
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
30 #end if
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
31 #if $adv.bwaopt
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
32 --bwaopt '$adv.bwaopt'
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
33 #end if
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
34
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
35 #if str( $fastq_input.fastq_input_selector ) == "paired"
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
36 --R1 '$fastq_input.fastq_input1'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
37 --R2 '$fastq_input.fastq_input2'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
38 #elif str( $fastq_input.fastq_input_selector ) == "paired_collection"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
39 --R1 '$fastq_input.fastq_input.forward'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
40 --R2 '$fastq_input.fastq_input.reverse'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
41 #elif str( $fastq_input.fastq_input_selector ) == "single"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
42 --se '$fastq_input.fastq_input_single'
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
43 #elif str( $fastq_input.fastq_input_selector ) == "paired_iv"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
44 --peil '$fastq_input.fastq_input_interleaved'
8
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
45 #elif str( $fastq_input.fastq_input_selector ) == "contigs"
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
46 --ctgs '$fastq_input.fastq_input_contigs'
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
47 #end if
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
48
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
49 &&
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
50
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
51 #import re
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
52 #if str( $fastq_input.fastq_input_selector ) == "paired"
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
53 #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input1.element_identifier)
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
54 #elif str( $fastq_input.fastq_input_selector ) == "paired_collection"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
55 #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input.name)
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
56 #elif str( $fastq_input.fastq_input_selector ) == "single"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
57 #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_single.element_identifier)
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
58 #elif str( $fastq_input.fastq_input_selector ) == "paired_iv"
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
59 #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_interleaved.element_identifier)
8
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
60 #elif str( $fastq_input.fastq_input_selector ) == "contigs"
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
61 #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_contigs.element_identifier)
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
62 #end if
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
63
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
64 mkdir -p ${dir_name} && cp -r out/reference out/snps.tab out/snps.aligned.fa out/snps.vcf ${dir_name}/ &&
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
65 tar -czf out.tgz ${dir_name}
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
66 #if "outcon" in str($outputs) and $adv.rename_cons
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
67 && sed -i 's/>.*/>${dir_name}/' out/snps.consensus.fa
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
68 #end if
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
69
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
70
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
71 ]]> </command>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
72
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
73 <inputs>
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
74
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
75 <conditional name="reference_source">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
76 <param name="reference_source_selector" type="select" label="Will you select a reference genome from your history or use a built-in index?" help="Built-ins were indexed using default options. See `Indexes` section of help below. If you would like to perform self-mapping select `history` here, then choose your input file as reference.">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
77 <option value="cached">Use a built-in genome index</option>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
78 <option value="history">Use a genome from history and build index</option>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
79 </param>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
80 <when value="cached">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
81 <param name="ref_file" type="select" label="Using reference genome" help="Select genome from the list">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
82 <options from_data_table="all_fasta">
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
83 <validator type="no_options" message="No reference genomes are available" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
84 </options>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
85 </param>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
86 </when>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
87 <when value="history">
7
cfe622189417 planemo upload commit 76d3c5d3d365229bb62f0f1920afddf96dc6dd11
thanhlv
parents: 6
diff changeset
88 <param name="ref_file" type="data" format="fasta,genbank" label="Use the following dataset as the reference sequence" help="You can upload a FASTA or FASTQ sequence to the history and use it as reference" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
89 </when>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
90 </conditional>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
91 <conditional name="fastq_input">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
92 <param name="fastq_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
93 <option value="paired">Paired</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
94 <option value="single">Single</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
95 <option value="paired_collection">Paired Collection</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
96 <option value="paired_iv">Paired Interleaved</option>
8
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
97 <option value="contigs">Assemblies</option>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
98 </param>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
99 <when value="paired">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
100 <param name="fastq_input1" type="data" format="fastqsanger,fasta" label="Select first set of reads" help="Specify dataset with forward reads"/>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
101 <param name="fastq_input2" type="data" format="fastqsanger,fasta" label="Select second set of reads" help="Specify dataset with reverse reads"/>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
102 </when>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
103 <when value="single">
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
104 <param name="fastq_input_single" type="data" format="fastqsanger,fasta" label="Select fastq dataset" help="Specify dataset with single reads"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
105 </when>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
106 <when value="paired_collection">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
107 <param name="fastq_input" format="fastqsanger,fasta" type="data_collection" collection_type="paired" label="Select a paired collection" help="See help section for an explanation of dataset collections"/>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
108 </when>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
109 <when value="paired_iv">
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
110 <param name="fastq_input_interleaved" type="data" format="fastqsanger" label="Select fastq dataset" help="Specify dataset with interleaved reads"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
111 </when>
8
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
112 <when value="contigs">
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
113 <param name="fastq_input_contigs" type="data" format="fasta,fasta.gz" label="Select fasta file"/>
922cfa35669c planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
thanhlv
parents: 7
diff changeset
114 </when>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
115 </conditional>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
116
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
117 <section name="adv" title="Advanced parameters" expanded="false">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
118 <param name="mapqual" type="integer" value="60" label="Minimum mapping quality" help="Minimum mapping quality to allow" />
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
119 <param name="mincov" type="integer" value="10" label="Minimum coverage" help="Minimum coverage to call a snp" />
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
120 <param name="minfrac" type="float" value="0.9" label="Minumum proportion for variant evidence" help="Minumum proportion for variant evidence" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
121 <param name="minqual" type="float" value="100.0" label="Minumum QUALITY in VCF column 6" help="Minumum QUALITY in VCF column 6" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
122 <param name="rgid" type="text" value="" label="Bam header @RG ID" help="Use this @RG ID: in the BAM header" />
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
123 <param name="bwaopt" type="text" value="" label="Extra BWA MEM options" help="Extra BWA MEM options, eg. -x pacbio" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
124 <param name="rename_cons" type="boolean" truevalue="rename_cons" falsevalue="" help="When producing an output of the reference genome with variants instantiated, edit the header so that it is named after the input VCF" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
125 </section>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
126
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
127 <param name="outputs" type="select" multiple="true" display="checkboxes" label="Output selection">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
128 <option value="outvcf" selected="True">The final annotated variants in VCF format</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
129 <option value="outgff" selected="False">The variants in GFF3 format</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
130 <option value="outtab" selected="True">A simple tab-separated summary of all the variants</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
131 <option value="outsum" selected="False">A summary of the samples and mapping</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
132 <option value="outlog" selected="False">A log file with the commands run and their outputs</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
133 <option value="outaln" selected="False">A version of the reference but with - at position with depth=0 and N for 0 to depth to --mincov (does not have variants)</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
134 <option value="outcon" selected="False">A version of the reference genome with all variants instantiated</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
135 <option value="outdep" selected="False">Output of samtools depth for the .bam file</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
136 <option value="outbam" selected="False">The alignments in BAM format. Note that multi-mapping and unmapped reads are not present.</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
137 <option value="outzip" selected="True">Zipped files needed for input into snippy-core</option>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
138 </param>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
139
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
140 </inputs>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
141
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
142 <outputs>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
143
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
144 <data format="vcf" name="snpvcf" label="${tool.name} on ${on_string} snps vcf file" from_work_dir="out/snps.vcf">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
145 <filter>outputs and 'outvcf' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
146 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
147 <data format="gff3" name="snpgff" label="${tool.name} on ${on_string} snps gff file" from_work_dir="out/snps.gff">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
148 <filter>outputs and 'outgff' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
149 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
150 <data format="tabular" name="snptab" label="${tool.name} on ${on_string} snps table" from_work_dir="out/snps.tab">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
151 <filter>outputs and 'outtab' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
152 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
153 <data format="tabular" name="snpsum" label="${tool.name} on ${on_string} snps summary" from_work_dir="out/snps.txt">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
154 <filter>outputs and 'outsum' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
155 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
156 <data format="txt" name="snplog" label="${tool.name} on ${on_string} log file" from_work_dir="out/snps.log">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
157 <filter>outputs and 'outlog' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
158 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
159 <data format="fasta" name="snpalign" label="${tool.name} on ${on_string} aligned fasta" from_work_dir="out/snps.aligned.fa">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
160 <filter>outputs and 'outaln' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
161 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
162 <data format="fasta" name="snpconsensus" label="${tool.name} on ${on_string} consensus fasta" from_work_dir="out/snps.consensus.fa">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
163 <filter>outputs and 'outcon' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
164 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
165 <data format="tabular" name="snpsdepth" label="${tool.name} on ${on_string} mapping depth" from_work_dir="out/snps.depth">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
166 <filter>outputs and 'outdep' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
167 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
168 <data format="bam" name="snpsbam" label="${tool.name} on ${on_string} mapped reads (bam)" from_work_dir="out/snps.bam">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
169 <filter>outputs and 'outbam' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
170 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
171 <data format="zip" name="outdir" label="${tool.name} on ${on_string} dir for snippy core" from_work_dir="out.tgz">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
172 <filter>outputs and 'outzip' in outputs</filter>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
173 </data>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
174
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
175 </outputs>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
176
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
177 <tests>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
178
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
179 <test> <!-- test 0 - fasta ref no snps -->
6
d9c204f7042c planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents: 5
diff changeset
180 <!-- <param name="ref" value="reference.fasta" ftype="fasta" /> -->
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
181 <param name="reference_source|reference_source_selector" value="history"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
182 <param name="reference_source|ref_file" value="reference.fasta" ftype="fasta"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
183 <param name="fastq_input_selector" value="paired" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
184 <param name="fastq_input1" ftype="fastqsanger" value="a_1.fastq" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
185 <param name="fastq_input2" ftype="fastqsanger" value="a_2.fastq" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
186 <param name="mincov" value="2" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
187 <param name="minqual" value="60" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
188 <param name="outputs" value="outgff,outsum" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
189 <output name="snpsum" ftype="tabular" file="a_fna_ref_mincov_2_minqual_60.snps.txt" lines_diff="6" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
190 <output name="snpgff" ftype="gff3" file="a_fna_ref_mincov_2_minqual_60.snps.gff" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
191 </test>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
192
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
193 <test> <!-- test 1 - fasta ref one snp -->
6
d9c204f7042c planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents: 5
diff changeset
194 <!-- <param name="ref" value="reference.fasta" ftype="fasta" /> -->
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
195 <param name="reference_source|reference_source_selector" value="history"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
196 <param name="reference_source|ref_file" value="reference.fasta" ftype="fasta"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
197 <param name="fastq_input_selector" value="paired" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
198 <param name="fastq_input1" ftype="fastqsanger" value="b_1.fastq" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
199 <param name="fastq_input2" ftype="fastqsanger" value="b_2.fastq" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
200 <param name="mincov" value="2" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
201 <param name="minqual" value="60" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
202 <param name="outputs" value="outgff,outsum" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
203 <output name="snpsum" ftype="tabular" file="b_fna_ref_mincov_2_minqual_60.snps.txt" lines_diff="6" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
204 <output name="snpgff" ftype="gff3" file="b_fna_ref_mincov_2_minqual_60.snps.gff" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
205 </test>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
206
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
207 <test> <!-- test 2 - fasta ref one snp paired_collection -->
6
d9c204f7042c planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents: 5
diff changeset
208 <!-- <param name="ref" value="reference.fasta" ftype="fasta" /> -->
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
209 <param name="reference_source|reference_source_selector" value="history"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
210 <param name="reference_source|ref_file" value="reference.fasta" ftype="fasta"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
211 <param name="fastq_input_selector" value="paired_collection" />
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
212 <param name="fastq_input">
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
213 <collection type="paired">
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
214 <element name="forward" ftype="fastqsanger" value="b_1.fastq" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
215 <element name="reverse" ftype="fastqsanger" value="b_2.fastq" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
216 </collection>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
217 </param>
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
218 <param name="mincov" value="2" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
219 <param name="minqual" value="60" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
220 <param name="outputs" value="outgff,outsum" />
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
221 <output name="snpsum" ftype="tabular" file="b_fna_ref_mincov_2_minqual_60.snps.txt" lines_diff="6" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
222 <output name="snpgff" ftype="gff3" file="b_fna_ref_mincov_2_minqual_60.snps.gff" />
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
223 </test>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
224
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
225 <test> <!-- test 3 - fasta ref one snp single -->
6
d9c204f7042c planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents: 5
diff changeset
226 <!-- <param name="ref" value="reference.fasta" ftype="fasta" /> -->
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
227 <param name="reference_source|reference_source_selector" value="history"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
228 <param name="reference_source|ref_file" value="reference.fasta" ftype="fasta"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
229 <param name="fastq_input_selector" value="single" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
230 <param name="fastq_input_single" value="b_2.fastq" ftype="fastqsanger" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
231 <param name="mincov" value="2" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
232 <param name="minqual" value="60" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
233 <param name="outputs" value="outgff,outsum" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
234 <output name="snpsum" ftype="tabular" file="b_fna_ref_mincov_2_minqual_60.snps.txt" lines_diff="6" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
235 <output name="snpgff" ftype="gff3" file="b_2_fna_ref_mincov_2_minqual_60.snps.gff" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
236 </test>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
237
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
238 <test> <!-- test 4 - reference source as cached -->
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
239 <param name="reference_source|reference_source_selector" value="cached"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
240 <param name="reference_source|ref_file" value="test_id"/>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
241 <param name="fastq_input_selector" value="single" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
242 <param name="fastq_input_single" value="b_2.fastq" ftype="fastqsanger" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
243 <param name="mincov" value="2" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
244 <param name="minqual" value="60" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
245 <param name="outputs" value="outgff,outsum" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
246 <output name="snpsum" ftype="tabular" file="b_fna_ref_mincov_2_minqual_60.snps.txt" lines_diff="6" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
247 <output name="snpgff" ftype="gff3" file="b_2_fna_ref_mincov_2_minqual_60.snps.gff" />
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
248 </test>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
249 </tests>
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
250
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
251
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
252 <help><![CDATA[
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
253
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
254 **Snippy @VERSION@**
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
255
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
256 Snippy finds SNPs between a haploid reference genome and your NGS sequence reads. It will find both substitutions (snps) and insertions/deletions (indels).
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
257
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
258 **Author**
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
259
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
260 Torsten Seemann
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
261
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
262 **Inputs**
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
263
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
264 - NGS Reads in fastq format (single or paired end)
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
265 - Reference file in either fasta or genbank format
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
266
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
267 If the reference file is supplied in genbank format, snpeff will be called to determine the effect of any snps found.
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
268
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
269 **Advanced options**
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
270
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
271 - mapping quality - Integer - Minimum mapping quality to allow (default '60')
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
272
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
273 - minimum coverage - Integer - Minimum coverage of variant site (default '10')
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
274
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
275 - minimum fraction - Float - Minumum proportion for variant evidence (default '0.9')
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
276
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
277 - minimum quality - Float - Minumum QUALITY in VCF column 6 (default '100.0')
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
278
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
279 - rgid - String - Use this @RG ID: in the BAM header (default '')
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
280
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
281 - bwaopt - Extra BWA MEM options, eg. -x pacbio (default '')
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
282
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
283 **Further information**
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
284
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
285 For a much more in depth description of snippy and how it works, see https://github.com/tseemann/snippy
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
286
2
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
287 ]]> </help>
4e478a5f2742 planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents: 1
diff changeset
288 <expand macro="citations"/>
0
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
289
42806c5a342d planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff changeset
290 </tool>