Mercurial > repos > lldelisle > cooler_zoomify
comparison cooler_zoomify.xml @ 0:4069512d96bd draft default tip
planemo upload for repository https://github.com/lldelisle/tools-lldelisle/blob/master/tools/cooler/.shed.yml commit bee0809b51b16e750353b19fad34bfcf5e93ab13
| author | lldelisle |
|---|---|
| date | Tue, 02 Apr 2024 07:30:31 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:4069512d96bd |
|---|---|
| 1 <tool id="cooler_zoomify" name="Cooler zoomify" version="@VERSION@+galaxy0" profile="18.01"> | |
| 2 <description>Generate a multi-resolution cooler file by coarsening</description> | |
| 3 <macros> | |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
| 6 <expand macro="requirements" /> | |
| 7 <expand macro="stdio" /> | |
| 8 <command detect_errors="exit_code"><![CDATA[ | |
| 9 cooler zoomify -p \${GALAXY_SLOTS:-4} | |
| 10 -c $c | |
| 11 -r '$r' | |
| 12 -o '$output' | |
| 13 '$input' | |
| 14 ]]> | |
| 15 </command> | |
| 16 <inputs> | |
| 17 <param name="input" multiple="false" type="data" format="cool" label="Select the input cool file to zoomify"/> | |
| 18 <param argument="-c" type="integer" value="10000000" label="Number of pixels dedicated to each process"/> | |
| 19 <param argument="-r" type="text" value="B" label="Resultion" help="Comma-separated list of target resolutions. Use suffixes B or N to specify a progression: B for binary (geometric steps of factor 2), N for nice (geometric steps of factor 10 interleaved with steps of 2 and 5). Examples: 1000B=1000,2000,4000,8000,... 1000N=1000,2000,5000,10000,... 5000N=5000,10000,25000,50000,... 4DN is an alias for 1000,2000,5000N"> | |
| 20 <validator type="regex">[BDN0-9,]+</validator> | |
| 21 </param> | |
| 22 </inputs> | |
| 23 | |
| 24 <outputs> | |
| 25 <data format="mcool" name="output" label="Multi-resolution mcool file from $input.name"/> | |
| 26 </outputs> | |
| 27 | |
| 28 <tests> | |
| 29 <test> | |
| 30 <param name="input" value="input.cool" ftype="cool"/> | |
| 31 <output name="output" file="output.mcool" ftype="mcool" compare="sim_size"/> | |
| 32 <param name="r" value="1000000,2000000,4000000"/> | |
| 33 </test> | |
| 34 </tests> | |
| 35 | |
| 36 <help> | |
| 37 **cooler zoomify** | |
| 38 Generate a multi-resolution cooler file by coarsening | |
| 39 Given a set of resolutions, generate a multi-cooler file from a cooler for visualisation with higlass. | |
| 40 </help> | |
| 41 <expand macro="citation_cooler" /> | |
| 42 </tool> |
