annotate correct_barcodes.xml @ 23:20d78baf0806 draft

planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
author nick
date Fri, 03 Feb 2017 15:54:34 -0500
parents 8ef925264516
children 736ead34b470
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
1 <?xml version="1.0"?>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
2 <tool id="correct_barcodes" name="Du Novo: Correct barcodes" version="0.6">
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
3 <description>of duplex sequencing reads</description>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
4 <requirements>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
5 <requirement type="package" version="2.1.0">bowtie2</requirement>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
6 <requirement type="package" version="0.1.18">samtools</requirement>
23
20d78baf0806 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents: 22
diff changeset
7 <requirement type="package" version="1.10">networkx</requirement>
22
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
8 <requirement type="package" version="0.6">duplex</requirement>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
9 <requirement type="set_environment">DUPLEX_DIR</requirement>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
10 <!-- TODO: require Python 2.7 -->
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
11 </requirements>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
12 <command detect_errors="exit_code">bash "\$DUPLEX_DIR/baralign.sh" '$input' refdir barcodes.bam
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
13 &amp;&amp; samtools view -f 256 barcodes.bam
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
14 | python "\$DUPLEX_DIR/correct.py" -d $dist -m $mapq -p $pos '$input' refdir/barcodes.fa
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
15 | sort &gt; '$output'
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
16 </command>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
17 <inputs>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
18 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
19 <param name="dist" type="integer" value="1" min="1" label="Maximum edit distance" help="Only use alignments where the barcodes differ by at most these many errors."/>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
20 <param name="mapq" type="integer" value="20" min="0" label="Minimum mapping quality" help="Only use alignments whose MAPQ is at least this."/>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
21 <param name="pos" type="integer" value="2" min="0" label="Minimum start offset" help="Ignore alignments where the start positions differ by more than this."/>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
22 </inputs>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
23 <outputs>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
24 <data name="output" format="tabular"/>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
25 </outputs>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
26 <citations>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
27 <citation type="bibtex">@article{Stoler2016,
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
28 author = {Stoler, Nicholas and Arbeithuber, Barbara and Guiblet, Wilfried and Makova, Kateryna D and Nekrutenko, Anton},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
29 doi = {10.1186/s13059-016-1039-4},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
30 issn = {1474-760X},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
31 journal = {Genome biology},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
32 number = {1},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
33 pages = {180},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
34 pmid = {27566673},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
35 publisher = {Genome Biology},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
36 title = {{Streamlined analysis of duplex sequencing data with Du Novo.}},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
37 url = {http://www.ncbi.nlm.nih.gov/pubmed/27566673},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
38 volume = {17},
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
39 year = {2016}
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
40 }</citation>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
41 </citations>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
42 <help>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
43
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
44 **What it does**
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
45
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
46 This is for processing duplex sequencing data. This will correct duplex barcodes and create new, larger families. Errors in barcodes normally prevent them from being recognized as the same as the other barcodes in their family. Correcting these errors allows the original, full families to be reconstructed, saving reads which would otherwise be lost. This tool accomplishes this by doing an all vs. all alignment between the barcodes with bowtie2. This identifies ones which are identical except a few, small differences.
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
47
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
48 -----
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
49
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
50 **Input**
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
51
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
52 This expects the output format of the "Make families" tool.
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
53
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
54 -----
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
55
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
56 **Output**
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
57
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
58 The output format is the same as the input format, ready to be consumed by the "Align families" tool.
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
59
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
60 </help>
8ef925264516 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'3eab56b30cc9d644798a290017bcc1188f028af8\n'-dirty
nick
parents:
diff changeset
61 </tool>