Mercurial > repos > thanhlv > snippy
annotate snippy-core.xml @ 9:2e9f837e23db draft default tip
planemo upload commit bacf06ead51adad153dd083d60a4e6643637b978
| author | thanhlv |
|---|---|
| date | Tue, 24 Sep 2019 09:59:21 -0400 |
| parents | d9c204f7042c |
| children |
| rev | line source |
|---|---|
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
1 <?xml version="1.0" encoding="utf-8"?> |
|
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
|
2 <tool id="snippy_core" name="snippy-core" version="@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
|
3 <description> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
4 Combine multiple Snippy outputs into a core SNP alignment |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
5 </description> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
6 <macros> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
7 <import>macros.xml</import> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
8 </macros> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
9 <expand macro="requirements" /> |
|
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 <command detect_errors="exit_code"><![CDATA[ |
|
5
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
11 #if $reference_source.reference_source_selector == 'history' |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
12 ln -sf '$reference_source.ref_file' 'ref' && |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
13 #elif $reference_source.reference_source_selector == 'cached' |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
14 ln -sf '$reference_source.ref_file.fields.path' 'ref' && |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
15 #end if |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
16 #for $indir in $indirs |
|
6
d9c204f7042c
planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents:
5
diff
changeset
|
17 #set $sample_name = os.path.splitext(os.path.basename(str($indir.element_identifier)))[0] |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
18 mkdir '$sample_name' && tar -xf '$indir' -C '$sample_name' --strip-components=1 && |
|
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
19 #end for |
|
6
d9c204f7042c
planemo upload commit 321f9fa14fb9c9ab56eec84bfcc2d0c0760bee4a
thanhlv
parents:
5
diff
changeset
|
20 #set snippy_dirs = " ".join(["'{0}'".format(os.path.splitext(os.path.basename(str($indir.element_identifier)))[0]) for $indir in $indirs]) |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
21 snippy-core |
|
5
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
22 --ref 'ref' |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
23 ${snippy_dirs} |
|
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 ]]></command> |
|
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 |
|
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 <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
|
27 <param name="indirs" type="data" multiple="true" format="zip" label="Snippy input zipped dirs" help="Select all the snippy inputs for alignment" /> |
|
5
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
28 <conditional name="reference_source"> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
29 <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."> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
30 <option value="cached">Use a built-in genome index</option> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
31 <option value="history">Use a genome from history and build index</option> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
32 </param> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
33 <when value="cached"> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
34 <param name="ref_file" type="select" label="Using reference genome" help="Select genome from the list"> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
35 <options from_data_table="all_fasta"> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
36 <validator type="no_options" message="No reference genomes are available" /> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
37 </options> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
38 </param> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
39 </when> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
40 <when value="history"> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
41 <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" /> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
42 </when> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
43 </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
|
44 <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
|
45 <option value="outaln" selected="True">A core SNP alignment in the fasta 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
|
46 <option value="outfull" selected="False">A whole genome SNP alignment (includes invariant sites)</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
|
47 <option value="outtab" selected="False">Tab-separated columnar list of core SNP sites with alleles and annotations</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
|
48 <option value="outtxt" selected="False">Tab-separated columnar list of alignment/core-size statistics</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
|
49 </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
|
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 </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
|
52 |
|
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 <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
|
54 <data format="fasta" name="alignment_fasta" label="${tool.name} on ${on_string} core alignment fasta" from_work_dir="core.aln"> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
55 <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
|
56 </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
|
57 <data format="fasta" name="full_alignment_fasta" label="${tool.name} on ${on_string} full alignment fasta" from_work_dir="core.full.aln"> |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
58 <filter>outputs and 'outfull' 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
|
59 </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
|
60 <data format="tabular" name="alignment_table" label="${tool.name} on ${on_string} core alignment table" from_work_dir="core.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
|
61 <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
|
62 </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
|
63 <data format="txt" name="alignment_summary" label="${tool.name} on ${on_string} core alignment summary" from_work_dir="core.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
|
64 <filter>outputs and 'outtxt' 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
|
65 </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
|
66 </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
|
67 |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
68 <tests> |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
69 <test><!-- Test #1 - test with 3 zipped directories --> |
|
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
70 <param name="indirs" value="a.tgz,b.tgz,c.tgz" /> |
|
5
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
71 <param name="reference_source|reference_source_selector" value="history"/> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
72 <param name="reference_source|ref_file" value="reference.fasta" ftype="fasta"/> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
73 <param name="outputs" value="outtxt" /> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
74 <output name="alignment_summary" ftype="txt" file="a_b_c.core.txt" /> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
75 </test> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
76 <test><!-- Test #2 - test with 3 zipped directories --> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
77 <param name="indirs" value="a.tgz,b.tgz,c.tgz" /> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
78 <param name="reference_source|reference_source_selector" value="cached"/> |
|
e10e0c41a6f3
planemo upload commit 6844ab5e7c82adc0f3a28153f1769b9d6a865002-dirty
thanhlv
parents:
2
diff
changeset
|
79 <param name="reference_source|ref_file" value="test_id"/> |
|
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
|
80 <param name="outputs" value="outtxt" /> |
|
2
4e478a5f2742
planemo upload commit c9db1bf13e663b9e2122fc610007679a2f117aa6-dirty
thanhlv
parents:
0
diff
changeset
|
81 <output name="alignment_summary" ftype="txt" file="a_b_c.core.txt" /> |
|
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
|
82 </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
|
83 </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
|
84 |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
85 <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
|
86 **snippy-core @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
|
87 |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
88 Combine multiple Snippy outputs into a core SNP alignment |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
89 |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
90 If you call SNPs for multiple isolates from the same reference, you can produce an alignment of "core SNPs" which can be used to build a high-resolution phylogeny (ignoring possible recombination). A "core site" is a genomic position that is present in all the samples. A core site can have the same nucleotide in every sample ("monomorphic") or some samples can be different ("polymorphic" or "variant"). If we ignore the complications of "ins", "del" variant types, and just use variant sites, these are the "core SNP genome". |
|
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 |
|
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 |
|
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 **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
|
94 |
|
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 Multiple Snippy output directories. (At least 2 of) |
|
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 |
|
42806c5a342d
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/snippy commit 41c38c65041b87dd3cdf86eca13278cabd13d998-dirty
thanhlv
parents:
diff
changeset
|
97 **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
|
98 |
|
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 - noreference Exclude reference (default '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
|
100 |
|
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 **Note:** |
|
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 |
|
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 snippy **must** have been run with --cleanup 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
|
104 |
|
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 ]]></help> |
|
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 <expand macro="citations" /> |
|
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 </tool> |
