comparison precheck.xml @ 29:9d28b4509c02 draft

planemo upload for repository https://github.com/galaxyproject/dunovo commit b'17e6160270d30b519b08f4d0701e0c2ad3adbb57\n'-dirty
author nick
date Fri, 01 Jun 2018 16:51:02 -0400
parents 0c3e8fa84c38
children 9dcdd56ca7a5
comparison
equal deleted inserted replaced
28:0c3e8fa84c38 29:9d28b4509c02
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="precheck" name="Du Novo: Check input" version="2.14"> 2 <tool id="precheck" name="Du Novo: Check input" version="2.15">
3 <requirements> 3 <requirements>
4 <requirement type="package" version="2.14">dunovo</requirement> 4 <requirement type="package" version="2.15">dunovo</requirement>
5 </requirements> 5 </requirements>
6 <description>for family content</description> 6 <description>for family content</description>
7 <command detect_errors="exit_code"> 7 <command detect_errors="exit_code">
8 precheck.py $validate --tag-length $tag_len --constant-length $const_len --min-reads $min_reads 8 precheck.py $check_ids --tag-length $tag_len --constant-length $const_len --min-reads $min_reads
9 $fastq1 $fastq2 &gt; $output 9 '$fastq1' '$fastq2' &gt; '$output'
10 </command> 10 </command>
11 <inputs> 11 <inputs>
12 <param name="fastq1" type="data" format="fastq" label="Sequencing reads, mate 1"/> 12 <param name="fastq1" type="data" format="fastq" label="Sequencing reads, mate 1"/>
13 <param name="fastq2" type="data" format="fastq" label="Sequencing reads, mate 2"/> 13 <param name="fastq2" type="data" format="fastq" label="Sequencing reads, mate 2"/>
14 <param name="min_reads" type="integer" value="3" min="0" label="Minimum reads per family" help="Single-strand families with fewer than this many reads will be skipped."/> 14 <param name="min_reads" type="integer" value="3" min="0" label="Minimum reads per family" help="Single-strand families with fewer than this many reads will be skipped."/>
15 <param name="tag_len" type="integer" value="12" min="0" label="Tag length" help="Length of each random barcode on the ends of the fragments."/> 15 <param name="tag_len" type="integer" value="12" min="0" label="Tag length" help="Length of each random barcode on the ends of the fragments."/>
16 <param name="const_len" type="integer" value="5" min="0" label="Invariant sequence length" help="Length of the sequence between the tag and actual sample sequence (the restriction site, normally)."/> 16 <param name="const_len" type="integer" value="5" min="0" label="Invariant sequence length" help="Length of the sequence between the tag and actual sample sequence (the restriction site, normally)."/>
17 <param name="validate" type="boolean" truevalue="--validate" falsevalue="" checked="False" label="Check read names" help="Make sure the names of the reads in each pair is the same. If checked, this will fail if there is a mismatch."/> 17 <param name="check_ids" type="boolean" truevalue="--validate" falsevalue="--no-check-ids" checked="True" label="Check read names" help="Make sure the ids of the reads in each pair is the same. If checked, this will fail if there is a mismatch."/>
18 </inputs> 18 </inputs>
19 <outputs> 19 <outputs>
20 <data name="output" format="tabular"/> 20 <data name="output" format="tabular"/>
21 </outputs> 21 </outputs>
22 22