Mercurial > repos > thanhlv > bin3c
comparison mkmap.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="mkmap" name="mkmap" version="@VERSION@"> | |
| 2 <description>Create a new contact map from assembly sequences and Hi-C bam file</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 mkmap | |
| 10 $clobber | |
| 11 --max-image $max_image | |
| 12 --min-extent $min_extent | |
| 13 --min-reflen $min_reflen | |
| 14 --min-signal $min_signal | |
| 15 $eta | |
| 16 #if bin_size != 0 | |
| 17 --bin-size $bin_size | |
| 18 #end if | |
| 19 #if min_insert != 0 | |
| 20 --min-insert $min_insert | |
| 21 #end if | |
| 22 --min-mapq $min_mapq | |
| 23 --strong $strong | |
| 24 #if neb_name != "" | |
| 25 --enzyme $neb_name | |
| 26 #end if | |
| 27 $ref $bam out | |
| 28 ]]></command> | |
| 29 | |
| 30 <inputs> | |
| 31 <param name="ref" type="data" format="fasta,fastaq.gz" label="Reference fasta sequence" /> | |
| 32 <param name="bam" type="data" format="bam" label="Input bam file in query order" /> | |
| 33 <param name="clobber" type="boolean" truevalue="--clobber" falsevalue="" checked="false" label="Clobber existing files" /> | |
| 34 <param name="max_image" type="integer" min="1" value="4000" label="Maximum image size for plots"/> | |
| 35 <param name="min_extent" type="integer" min="1" value="50000" label="Minimum cluster extent used in output"/> | |
| 36 <param name="min_reflen" type="integer" min="1" value="1000" label="Minimum acceptable reference length"/> | |
| 37 <param name="min_signal" type="integer" min="1" value="5" label="Minimum acceptable signal"/> | |
| 38 <param name="eta" type="boolean" truevalue="--eta" falsevalue="" checked="false" label="Re-count bam alignments to provide an ETA" /> | |
| 39 <param name="bin_size" type="integer" min="0" value="0" label="Size of bins for windows extent maps" /> | |
| 40 <param name="min_insert" type="integer" min="0" value="0" label="Minimum pair separation" /> | |
| 41 <param name="min_mapq" type="integer" min="0" value="60" label="Minimum acceptable mapping quality" /> | |
| 42 <param name="strong" type="integer" min="1" value="10" label="Accepted alignments must being N matches" /> | |
| 43 <param name="neb_name" type="text" value="" label="Case-sensitive NEB enzyme name. Use multiple times for | |
| 44 multiple enzymes" /> | |
| 45 </inputs> | |
| 46 | |
| 47 <outputs> | |
| 48 <data name="output" label="${tool.name} on ${on_string} Output"> | |
| 49 <discover_datasets pattern="__designation_and_ext__" directory="out" /> | |
| 50 </data> | |
| 51 </outputs> | |
| 52 | |
| 53 <tests> | |
| 54 <test> | |
| 55 </test> | |
| 56 </tests> | |
| 57 <help><![CDATA[ | |
| 58 | |
| 59 Documentation can be found at `<https://github.com/cerebis/bin3C>`_. | |
| 60 | |
| 61 ]]></help> | |
| 62 <expand macro="citations" /> | |
| 63 </tool> |
