comparison cluster.xml @ 0:eb31dd5dc3ed draft

planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/bin3C commit 0c7c0f6a955950df029477a0532268bf2b30d269-dirty
author thanhlv
date Thu, 26 Sep 2019 12:12:13 -0400
parents
children 15d48ce4e275
comparison
equal deleted inserted replaced
-1:000000000000 0:eb31dd5dc3ed
1 <tool id="cluster" name="cluster" version="@VERSION@">
2 <description>Cluster an existing contact map into genome bins</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <expand macro="version_command" />
8 <command detect_errors="exit_code"><![CDATA[
9 bin3C cluster
10 $clobber
11 --max-image $max_image
12 --min-extent $min_extent
13 --min-reflen $min_reflen
14 --min-signal $min_signal
15 -s 201987356473
16 $no_report
17 $no_spades
18 $no_plot
19 $no_fasta
20 $only_large
21 $fasta
22 $contact_map out
23 ]]></command>
24
25 <inputs>
26 <param name="contact_map" type="data" format="gz" label="Contact map" help="This file is generated from mkmap command" />
27 <param name="clobber" type="boolean" truevalue="--clobber" falsevalue="" label="Clobber existing files" />
28 <param name="max_image" type="integer" min="1" value="4000" label="Maximum image size for plots"/>
29 <param name="min_extent" type="integer" min="1" value="50000" label="Minimum cluster extent used in output"/>
30 <param name="min_reflen" type="integer" min="1" value="1000" label="Minimum acceptable reference length"/>
31 <param name="min_signal" type="integer" min="1" value="5" label="Minimum acceptable signal"/>
32 <param name="no_report" type="boolean" truevalue="--no-report" falsevalue="" checked="false" label="Do not generate a cluster report" />
33 <param name="no_spades" type="boolean" truevalue="--no-spades" falsevalue="" checked="false" label="Assembly was not done using SPAdes" />
34 <param name="no_plot" type="boolean" truevalue="--no-plot" falsevalue="" checked="false" label="Do not generate a clustered heatmap" />
35 <param name="no_fasta" type="boolean" truevalue="--no-fasta" falsevalue="" checked="false" label="Do not generate cluster FASTA files" />
36 <param name="only_large" type="boolean" truevalue="--only-large" falsevalue="" checked="false" label="Only write FASTA for clusters longer than min_extent" />
37 <param name="fasta" type="data" format="fasta" label="Alternative source FASTA location from that supplied during mkmap" />
38 </inputs>
39
40 <outputs>
41 <data name="output" label="${tool.name} on ${on_string} Output">
42 <discover_datasets pattern="__designation_and_ext__" directory="out" />
43 </data>
44 </outputs>
45
46 <tests>
47 <test>
48 </test>
49 </tests>
50 <help><![CDATA[
51
52 Documentation can be found at `<https://github.com/cerebis/bin3C>`_.
53
54 ]]></help>
55 <expand macro="citations" />
56 </tool>