comparison align_families.xml @ 4:5fbeaa41b223 draft

Update to Du Novo 2.0.6.
author nick
date Wed, 25 Oct 2017 19:26:43 -0400
parents 00dde366870a
children 000969829a5d
comparison
equal deleted inserted replaced
3:00dde366870a 4:5fbeaa41b223
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="align_families" name="Du Novo: Align families" version="0.8.1"> 2 <tool id="align_families" name="Du Novo: Align families" version="2.0.6">
3 <description>of duplex sequencing reads</description> 3 <description>of duplex sequencing reads</description>
4 <requirements> 4 <requirements>
5 <requirement type="package" version="7.221">mafft</requirement> 5 <requirement type="package" version="7.221">mafft</requirement>
6 <requirement type="package" version="0.8.1">dunovo</requirement> 6 <requirement type="package" version="2.0.6">dunovo</requirement>
7 <!-- TODO: require Python 2.7 --> 7 <!-- TODO: require Python 2.7 -->
8 </requirements> 8 </requirements>
9 <command detect_errors="exit_code">align_families.py --galaxy $phone --processes \${GALAXY_SLOTS:-1} '$input' &gt; '$output' 9 <command detect_errors="exit_code">align_families.py --aligner $aligner --galaxy $phone --processes \${GALAXY_SLOTS:-1} '$input' &gt; '$output'
10 </command> 10 </command>
11 <inputs> 11 <inputs>
12 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/> 12 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/>
13 <param name="phone" type="boolean" truevalue="--phone-home" falsevalue="" checked="False" label="Send anonymous usage data" help="Report helpful usage data to the developer, to better understand the use cases and performance of the tool. The only data which will be recorded is the name and version of the tool, the size of the input data, the time taken to process it, and the IP address of the machine running it. No parameters or filenames are sent."/> 13 <param name="aligner" type="select" value="mafft" label="Multiple sequence aligner" help="MAFFT is the original aligner Du Novo was published with in 2016. Kalign is much faster and has similar accuracy.">
14 <option value="kalign">Kalign2</option>
15 <option value="mafft">MAFFT</option>
16 </param>
17 <param name="phone" type="boolean" truevalue="--phone-home" falsevalue="" checked="False" label="Send usage data" help="Report helpful usage data to the developer, to better understand the use cases and performance of the tool. The only data which will be recorded is the name and version of the tool, the size of the input data, the number of processes used, the time and memory taken to process it, the alignment algorithm selected, and the IP address of the machine running it. Also, if the tool fails, it will report the name of the exception thrown and the line of code it occurred in. The names of the input and output datasets are not sent. All the reporting and recording code is available at https://github.com/NickSto/ET."/>
14 </inputs> 18 </inputs>
15 <outputs> 19 <outputs>
16 <data name="output" format="tabular"/> 20 <data name="output" format="tabular"/>
17 </outputs> 21 </outputs>
18 <tests> 22 <tests>
19 <test> 23 <test>
20 <param name="input" value="smoke.families.tsv"/> 24 <param name="input" value="smoke.families.tsv"/>
21 <output name="output" file="smoke.families.aligned.tsv"/> 25 <output name="output" file="smoke.families.aligned.tsv"/>
22 </test> 26 </test>
23 <test> 27 <test>
24 <param name="input" value="families.in.tsv"/> 28 <param name="input" value="families.sort.tsv"/>
25 <output name="output" file="families.sort.tsv"/> 29 <output name="output" file="families.msa.tsv"/>
26 </test> 30 </test>
27 </tests> 31 </tests>
28 <citations>
29 <citation type="bibtex">@article{Stoler2016,
30 author = {Stoler, Nicholas and Arbeithuber, Barbara and Guiblet, Wilfried and Makova, Kateryna D and Nekrutenko, Anton},
31 doi = {10.1186/s13059-016-1039-4},
32 issn = {1474-760X},
33 journal = {Genome biology},
34 number = {1},
35 pages = {180},
36 pmid = {27566673},
37 publisher = {Genome Biology},
38 title = {{Streamlined analysis of duplex sequencing data with Du Novo.}},
39 url = {http://www.ncbi.nlm.nih.gov/pubmed/27566673},
40 volume = {17},
41 year = {2016}
42 }</citation>
43 </citations>
44 <help> 32 <help>
45 33
46 **What it does** 34 **What it does**
47 35
48 This is for processing duplex sequencing data. It does a multiple sequence alignment on each (single-stranded) family of reads. 36 This is for processing duplex sequencing data. It does a multiple sequence alignment on each (single-stranded) family of reads.
75 The alignments are done using MAFFT, specifically the command 63 The alignments are done using MAFFT, specifically the command
76 :: 64 ::
77 65
78 $ mafft --nuc --quiet family.fa &gt; family.aligned.fa 66 $ mafft --nuc --quiet family.fa &gt; family.aligned.fa
79 67
80 </help> 68 </help>
69 <citations>
70 <citation type="bibtex">@article{Stoler2016,
71 author = {Stoler, Nicholas and Arbeithuber, Barbara and Guiblet, Wilfried and Makova, Kateryna D and Nekrutenko, Anton},
72 doi = {10.1186/s13059-016-1039-4},
73 issn = {1474-760X},
74 journal = {Genome biology},
75 number = {1},
76 pages = {180},
77 pmid = {27566673},
78 publisher = {Genome Biology},
79 title = {{Streamlined analysis of duplex sequencing data with Du Novo.}},
80 url = {http://www.ncbi.nlm.nih.gov/pubmed/27566673},
81 volume = {17},
82 year = {2016}
83 }</citation>
84 </citations>
81 </tool> 85 </tool>