comparison macros.xml @ 0:60573349e9ae draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta commit 6d14992ea4fb1af09373d51b3a48166afcbd3a74"
author iuc
date Wed, 11 Nov 2020 21:54:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:60573349e9ae
1 <?xml version="1.0"?>
2 <macros>
3 <token name="@TOOL_VERSION@">0.6.0</token>
4 <token name="@PROFILE@">18.01</token>
5 <xml name="requirements">
6 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">shasta</requirement>
8 </requirements>
9 </xml>
10 <xml name="version_command">
11 <version_command>shasta --version</version_command>
12 </xml>
13 <xml name="citations">
14 <citations>
15 <citation type="doi">10.1038/s41587-020-0503-6</citation>
16 <citation type="bibtex">@online{shasta,
17 author = {TODOLastName,TODOFirstName},
18 title = {shasta},
19 year = 2020,
20 url = {https://github.com/chanzuckerberg/shasta},
21 urldate = {2020-11-05}
22 }</citation>
23 </citations>
24 </xml>
25 <!--
26 input
27 -->
28 <token name="@INIT_INPUT_READS@"><![CDATA[
29 #for $counter, $input in enumerate($in_data)
30 #if $input.is_of_type("fasta.gz")
31 #set $ext = "fasta"
32 gzip -dcf '$input' > ./input_${counter}.${ext} &&
33 #elif $input.is_of_type("fastq.gz","fastqsanger.gz")
34 #set $ext = "fastq"
35 gzip -dcf '$input' > ./input_${counter}.${ext} &&
36 #elif $input.is_of_type("fastqsanger", "fastq"):
37 #set $ext = "fastq"
38 ### I tried symlinking but shasta still complained about file extensions
39 cp '$input' ./input_${counter}.${ext} &&
40 #elif $input.is_of_type("fasta"):
41 #set $ext = "fasta"
42 ### I tried symlinking but shasta still complained about file extensions
43 cp '$input' ./input_${counter}.${ext} &&
44 #end if
45 #end for
46 ]]></token>
47
48 <xml name="input_reads">
49 <param name="in_data" type="data" format="fasta,fastq,fastqsanger,fasta.gz,fastq.gz,fastqsanger.gz" multiple="true" label="Input read file(s)"/>
50 </xml>
51
52 <xml name="config_selection">
53 <param name="config_select" type="select" label="Initial config file to build off of." help="Link to the directory where these config files are stored can be found in the tool help below.">
54 <option value="Nanopore-Dec2019.conf"></option>
55 <option value="Nanopore-Jun2020.conf"></option>
56 <option value="Nanopore-OldGuppy-Sep2020.conf"></option>
57 <option value="Nanopore-Sep2020.conf"></option>
58 <option value="Nanopore-UL-Dec2019.conf"></option>
59 <option value="Nanopore-UL-Jun2020.conf"></option>
60 <option value="Nanopore-UL-Sep2020.conf"></option>
61 <option value="Nanopore-UL-iterative-Sep2020.conf"></option>
62 <option value="PacBio-CCS-Dec2019.conf"></option>
63 <option value="PacBio-CLR-Dec2019.conf"></option>
64 </param>
65 </xml>
66 <!--
67 Help
68 -->
69
70 <token name="@WID@"><![CDATA[
71 The goal of the *Shasta* long read assembler is to rapidly produce accurate assembled sequence using as input DNA reads generated by Oxford Nanopore flow cells.
72
73 Computational methods used by the Shasta assembler include:
74
75 Using a run-length representation of the read sequence. This makes the assembly process more resilient to errors in homopolymer repeat counts, which are the most common type of errors in Oxford Nanopore reads.
76
77 Using in some phases of the computation a representation of the read sequence based on markers, a fixed subset of short k-mers (k ≈ 10).
78 ]]></token>
79 <token name="@REFERENCES@"><![CDATA[
80 More information are available on the `documentation <https://chanzuckerberg.github.io/shasta/>`_ or the `github <https://github.com/chanzuckerberg/shasta>`_ .
81 ]]></token>
82 </macros>