annotate correct_barcodes.xml @ 6:9a0bee12b583 draft default tip

planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
author nick
date Mon, 06 Feb 2017 23:39:11 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
1 <?xml version="1.0"?>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
2 <tool id="correct_barcodes" name="Du Novo: Correct barcodes" version="0.6">
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
3 <description>of duplex sequencing reads</description>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
4 <requirements>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
5 <requirement type="package" version="2.1.0">bowtie2</requirement>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
6 <requirement type="package" version="0.1.18">samtools</requirement>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
7 <requirement type="package" version="1.9">networkx</requirement>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
8 <requirement type="package" version="0.6">duplex</requirement>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
9 <requirement type="set_environment">DUPLEX_DIR</requirement>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
10 <!-- TODO: require Python 2.7 -->
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
11 </requirements>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
12 <command detect_errors="exit_code">bash "\$DUPLEX_DIR/baralign.sh" '$input' refdir barcodes.bam
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
13 &amp;&amp; samtools view -f 256 barcodes.bam
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
14 | python "\$DUPLEX_DIR/correct.py" -d $dist -m $mapq -p $pos '$input' refdir/barcodes.fa
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
15 | sort &gt; '$output'
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
16 </command>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
17 <inputs>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
18 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\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."/>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\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."/>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\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."/>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
22 </inputs>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
23 <outputs>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
24 <data name="output" format="tabular"/>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
25 </outputs>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
26 <citations>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
27 <citation type="bibtex">@article{Stoler2016,
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
28 author = {Stoler, Nicholas and Arbeithuber, Barbara and Guiblet, Wilfried and Makova, Kateryna D and Nekrutenko, Anton},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
29 doi = {10.1186/s13059-016-1039-4},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
30 issn = {1474-760X},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
31 journal = {Genome biology},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
32 number = {1},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
33 pages = {180},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
34 pmid = {27566673},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
35 publisher = {Genome Biology},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
36 title = {{Streamlined analysis of duplex sequencing data with Du Novo.}},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
37 url = {http://www.ncbi.nlm.nih.gov/pubmed/27566673},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
38 volume = {17},
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
39 year = {2016}
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
40 }</citation>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
41 </citations>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
42 <help>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
43
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
44 **What it does**
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
45
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\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.
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
47
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
48 -----
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
49
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
50 **Input**
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
51
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
52 This expects the output format of the "Make families" tool.
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
53
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
54 -----
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
55
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
56 **Output**
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
57
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\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.
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
59
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
60 </help>
9a0bee12b583 planemo upload for repository https://github.com/galaxyproject/dunovo commit b'9fbe4b8871038d2945fa4b9ee0b5f89cf4e4f494\n'-dirty
nick
parents:
diff changeset
61 </tool>