comparison correct_barcodes.xml @ 10:9dc43bf7d1db draft

planemo upload for repository https://github.com/galaxyproject/dunovo commit b'230f018da2c0bc4eedc72e0f70eac0df1e85ebdb\n'-dirty
author nick
date Fri, 01 Jun 2018 17:55:23 -0400
parents fa563fa9b330
children 0f8e0dc73d1d
comparison
equal deleted inserted replaced
9:fa563fa9b330 10:9dc43bf7d1db
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="correct_barcodes" name="Du Novo: Correct barcodes" version="2.14"> 2 <tool id="correct_barcodes" name="Du Novo: Correct barcodes" version="2.15">
3 <description>of duplex sequencing reads</description> 3 <description>of duplex sequencing reads</description>
4 <requirements> 4 <requirements>
5 <requirement type="package" version="1.1.2">bowtie</requirement> 5 <requirement type="package" version="1.1.2">bowtie</requirement>
6 <requirement type="package" version="1.10">networkx</requirement> 6 <requirement type="package" version="1.10">networkx</requirement>
7 <requirement type="package" version="2.14">dunovo</requirement> 7 <requirement type="package" version="2.15">dunovo</requirement>
8 <!-- TODO: require Python 2.7 --> 8 <!-- TODO: require Python 2.7 -->
9 </requirements> 9 </requirements>
10 <version_command>correct.py --version</version_command> 10 <version_command>correct.py --version</version_command>
11 <command detect_errors="exit_code"><![CDATA[ 11 <command detect_errors="exit_code"><![CDATA[
12 baralign.sh -c $advanced.chunkmbs -t \${GALAXY_SLOTS:-1} '$input' refdir correct.sam 12 baralign.sh -c $advanced.chunkmbs -t \${GALAXY_SLOTS:-1} '$input' refdir correct.sam
13 && correct.py --galaxy $phone --dist $dist --mapq $mapq --pos $pos 13 && correct.py --galaxy $phone $check_ids --dist $dist --mapq $mapq --pos $pos
14 '$input' refdir/barcodes.fa correct.sam 14 '$input' refdir/barcodes.fa correct.sam
15 > families.corrected.tsv 15 > families.corrected.tsv
16 && sort families.corrected.tsv 16 && sort families.corrected.tsv
17 > '$output' 17 > '$output'
18 ]]> 18 ]]>
20 <inputs> 20 <inputs>
21 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/> 21 <param name="input" type="data" format="tabular" label="Input reads" help="with barcodes, grouped by family"/>
22 <param name="dist" type="integer" value="3" min="1" label="Maximum differences" help="Only use alignments where the barcodes differ by at most these many errors. Note that raising this beyond 3 probably won't have an effect, because of the inherent limit in bowtie's ability to match up distant barcodes."/> 22 <param name="dist" type="integer" value="3" min="1" label="Maximum differences" help="Only use alignments where the barcodes differ by at most these many errors. Note that raising this beyond 3 probably won't have an effect, because of the inherent limit in bowtie's ability to match up distant barcodes."/>
23 <param name="mapq" type="integer" value="20" min="0" label="Minimum mapping quality" help="Only use alignments whose MAPQ is at least this."/> 23 <param name="mapq" type="integer" value="20" min="0" label="Minimum mapping quality" help="Only use alignments whose MAPQ is at least this."/>
24 <param name="pos" type="integer" value="2" min="0" label="Maximum start offset" help="Ignore alignments where the start positions differ by more than this."/> 24 <param name="pos" type="integer" value="2" min="0" label="Maximum start offset" help="Ignore alignments where the start positions differ by more than this."/>
25 <param name="check_ids" type="boolean" truevalue="" falsevalue="--no-check-ids" checked="True" label="Check read names" help="Make sure reads are properly paired up. The job will fail if there is a pair of reads where their ids aren't identical (minus any ending /1 or /2)."/>
25 <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 time and memory taken to process it, 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 parameters and input/output dataset names are not sent. All the reporting and recording code is available at https://github.com/NickSto/ET"/> 26 <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 time and memory taken to process it, 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 parameters and input/output dataset names are not sent. All the reporting and recording code is available at https://github.com/NickSto/ET"/>
26 <section name="advanced" title="Advanced Options" expanded="false"> 27 <section name="advanced" title="Advanced Options" expanded="false">
27 <param name="chunkmbs" type="integer" value="512" min="16" label="bowtie --chunkmbs" help="This is the number of megabytes to give each bowtie thread for storing path descriptors. If you see warnings about &quot;Exhausted best-first chunk memory&quot; in stderr, you need to increase this."/> 28 <param name="chunkmbs" type="integer" value="512" min="16" label="bowtie --chunkmbs" help="This is the number of megabytes to give each bowtie thread for storing path descriptors. If you see warnings about &quot;Exhausted best-first chunk memory&quot; in stderr, you need to increase this."/>
28 </section> 29 </section>
29 </inputs> 30 </inputs>