Mercurial > repos > bgruening > hictk
comparison hictk.xml @ 0:a2e75bad2872 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/hictk commit 5f922b78c9d2d1f69261ce2183b3c4075dd7a2f3
author | bgruening |
---|---|
date | Sat, 03 Feb 2024 19:38:30 +0000 |
parents | |
children | 2da980d606cb |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a2e75bad2872 |
---|---|
1 <tool id="hictk" name="hictk" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="22.05"> | |
2 <description>convert cool to juicebox hic</description> | |
3 <macros> | |
4 <token name="@TOOL_VERSION@">0.0.8</token> | |
5 <token name="@VERSION_SUFFIX@">0</token> | |
6 </macros> | |
7 <requirements> | |
8 <requirement version="@TOOL_VERSION@" type="package">hictk</requirement> | |
9 </requirements> | |
10 <version_command><![CDATA[echo "@TOOL_VERSION@"]]></version_command> | |
11 <command><![CDATA[ | |
12 hictk convert -f --output-fmt 'hic' '$incool' '$outhic' | |
13 ]]></command> | |
14 <inputs> | |
15 <param name="incool" type="data" format="cool,mcool,scool" label="cool/hdf5 data to convert to hic binary" /> | |
16 </inputs> | |
17 <outputs> | |
18 <data name="outhic" format="juicebox_hic" label="hictk convert on $incool.element_identifier hic" hidden="false"/> | |
19 </outputs> | |
20 <tests> | |
21 <test> | |
22 <param name="incool" value="incool_sample"/> | |
23 <output name="outhic" value="outhic_sample" compare="sim_size" delta_frac="0.1" ftype="juicebox_hic" /> | |
24 </test> | |
25 </tests> | |
26 <help><![CDATA[ | |
27 This tool converts cool/mcool/scool format files into hic binary files | |
28 | |
29 **hictk** | |
30 | |
31 hictk is a blazing fast toolkit to work with .hic and .cool files. | |
32 | |
33 This repository hosts `hictk`: a set of CLI tools to work with Cooler, as well as `libhictk`: the C++ library underlying `hictk`. | |
34 | |
35 hictk is capable of reading files in `.cool`, `.mcool`, `.scool` and `.hic` format (including hic v9) as well as writing `.cool` and `.mcool` files. | |
36 | |
37 ]]></help> | |
38 <citations> | |
39 <citation type="doi">10.1093/bioinformatics/bts573</citation> | |
40 </citations> | |
41 </tool> |