comparison netchainsubset.xml @ 0:6d5ab8d81db2 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_netchainsubset commit 203061071dae562277de62b43680fc9bae853f35
author iuc
date Wed, 14 Jan 2026 09:16:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6d5ab8d81db2
1 <tool id="ucsc_netchainsubset" name="netChainSubset" version="@TOOL_VERSION@+galaxy0" profile="21.05" license="MIT">
2 <description>
3 Create chain file with subset of chains that appear in the net
4 </description>
5 <macros>
6 <token name="@TOOL_VERSION@">482</token>
7 </macros>
8 <xrefs>
9 <xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
10 </xrefs>
11 <requirements>
12 <requirement type="package" version="@TOOL_VERSION@">ucsc-netchainsubset</requirement>
13 </requirements>
14 <version_command><![CDATA[ echo "@TOOL_VERSION@" ]]></version_command>
15 <command detect_errors="exit_code"><![CDATA[
16 netChainSubset
17 '$in_net'
18 '$in_chain'
19 '$out'
20 $splitOnInsert
21 $wholeChains
22 $skipMissing
23 ]]></command>
24 <inputs>
25 <param name="in_net" format="ucsc.net" type="data" label="net dataset" help="" />
26 <param name="in_chain" format="chain" type="data" label="chain dataset" help="" />
27 <param argument="-splitOnInsert" type="boolean" optional="true" truevalue="-splitOnInsert" falsevalue="" label="Split on insert" help="Split chain when get an insertion of another chain." />
28 <param argument="-wholeChains" type="boolean" optional="true" truevalue="-wholeChains" falsevalue="" label="Whole chains" help="Write entire chain references by net, don't split when a high-level net is encoundered. This is useful when nets have been filtered." />
29 <param argument="-skipMissing" type="boolean" optional="true" truevalue="-skipMissing" falsevalue="" label="Skip missing chains" help="Skip chains that are not found instead of generating an error. Useful if chains have been filtered." />
30 </inputs>
31 <outputs>
32 <data name="out" format="chain" />
33 </outputs>
34 <tests>
35 <test expect_num_outputs="1">
36 <param name="in_net" value="target.net" />
37 <param name="in_chain" value="in.chain" />
38 <output name="out" file="out.chain" />
39 </test>
40 </tests>
41 <help><![CDATA[
42 **What it does**
43
44 `netChainSubset`_ is a tool to create a `chain`_ file with subset of chains that appear in the net.
45 This process creates so called `liftOver`_ file used to convert coordinates between asesemblies.
46
47 For implementation details see netChainSubset's `source code`_.
48
49 .. _netChainSubset: https://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER
50 .. _net: https://genome.ucsc.edu/goldenPath/help/net.html
51 .. _chain: https://genome.ucsc.edu/goldenPath/help/chain.html
52 .. _liftOver: https://genome.ucsc.edu/goldenPath/help/hgTracksHelp.html#Liftover
53 .. _source code: https://github.com/ucscGenomeBrowser/kent/blob/151a59e4e7526124ff096019c6c4052f0a900711/src/hg/mouseStuff/netChainSubset/netChainSubset.c
54 ]]> </help>
55 <citations>
56 <citation type="doi">10.1093/bib/bbs038</citation>
57 </citations>
58 </tool>