changeset 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
files hictk.xml test-data/incool_sample test-data/outhic_sample
diffstat 3 files changed, 41 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hictk.xml	Sat Feb 03 19:38:30 2024 +0000
@@ -0,0 +1,41 @@
+<tool id="hictk" name="hictk" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="22.05">
+    <description>convert cool to juicebox hic</description>
+    <macros>
+        <token name="@TOOL_VERSION@">0.0.8</token>
+        <token name="@VERSION_SUFFIX@">0</token>
+    </macros>
+    <requirements>
+        <requirement version="@TOOL_VERSION@" type="package">hictk</requirement>
+    </requirements>
+    <version_command><![CDATA[echo "@TOOL_VERSION@"]]></version_command>
+    <command><![CDATA[
+      hictk convert -f --output-fmt 'hic' '$incool' '$outhic'
+    ]]></command>
+    <inputs>
+        <param name="incool" type="data" format="cool,mcool,scool" label="cool/hdf5 data to convert to hic binary" />
+    </inputs>
+    <outputs>
+        <data name="outhic" format="juicebox_hic" label="hictk convert on $incool.element_identifier hic" hidden="false"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="incool" value="incool_sample"/>
+            <output name="outhic" value="outhic_sample" compare="sim_size" delta_frac="0.1" ftype="juicebox_hic" />
+        </test>
+    </tests>
+    <help><![CDATA[
+ This tool converts cool/mcool/scool format files into hic binary files
+
+ **hictk**
+
+ hictk is a blazing fast toolkit to work with .hic and .cool files.
+
+ This repository hosts `hictk`: a set of CLI tools to work with Cooler, as well as `libhictk`: the C++ library underlying `hictk`.
+
+ hictk is capable of reading files in `.cool`, `.mcool`, `.scool` and `.hic` format (including hic v9) as well as writing `.cool` and `.mcool` files.
+
+  ]]></help>
+    <citations>
+        <citation type="doi">10.1093/bioinformatics/bts573</citation>
+    </citations>
+</tool>
Binary file test-data/incool_sample has changed
Binary file test-data/outhic_sample has changed