Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UCSC tools version bump & polish #6342

Merged
merged 4 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tools/ucsc_tools/fasplit/.lint_skip

This file was deleted.

2 changes: 1 addition & 1 deletion tools/ucsc_tools/fasplit/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: faSplit is a tool to split a single FASTA file into several files
long_description: faSplit is a tool to split a single FASTA file into several files
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit
type: unrestricted
categories:
- Fasta Manipulation
14 changes: 9 additions & 5 deletions tools/ucsc_tools/fasplit/fasplit.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<tool id="fasplit" name="faSplit" version="@TOOL_VERSION@">
<description>Split a FASTA file</description>
<macros>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
</xrefs>
<macros>
<token name="@TOOL_VERSION@">377</token>
</macros>
<requirements>
<requirement type="package" version="@TOOL_VERSION@">ucsc-fasplit</requirement>
</requirements>
Expand Down Expand Up @@ -57,7 +57,7 @@ out/
<element name="2" file="2.fa" />
<element name="3" file="3.fa" />
<element name="4" file="4.fa" />
</output_collection>
</output_collection>
</test>
<test>
<param name="input" ftype="fasta" value="CDS.fa"/>
Expand Down Expand Up @@ -102,16 +102,20 @@ out/
<element name="ENSMUST00000173143_musmusculus" file="ENSMUST00000173143_musmusculus.fa" />
<element name="ENSSSCT00000013404_susscrofa" file="ENSSSCT00000013404_susscrofa.fa" />
<element name="ENST00000600492_homosapiens" file="ENST00000600492_homosapiens.fa" />
</output_collection>
</output_collection>
</test>
</tests>
<help><![CDATA[
**What it does**

`faSplit`_ is a tool to split a single FASTA file into several files.

For implementation details see faSplit's `source code`_.

.. _faSplit: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/utils/faSplit/faSplit.c
]]></help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
</citations>
</tool>
2 changes: 1 addition & 1 deletion tools/ucsc_tools/fatovcf/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Convert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffs
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
long_description: Convert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffs by comparing the given FASTA sequences with a selectable reference. In default setting the first entry of the FASTA alignment file will serve as a reference.
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fatovcf
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fatovcf
type: unrestricted
categories:
- Convert Formats
10 changes: 7 additions & 3 deletions tools/ucsc_tools/fatovcf/fatovcf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
]]></command>
<inputs>
<param name="in_fasta" format="fasta" type="data" label="FASTA Alignment" help="Must contain a series of sequences with different names and the same length. Both N and - are treated as missing information." />

<conditional name="ref_seq">
<param name="refSeq" type="select" label="Determine reference sequence" help="Which sequence from the FASTA file should be used as the reference sequence.">
<option value="" selected="true">Use the first sequence as reference</option>
Expand Down Expand Up @@ -76,7 +76,7 @@
<param argument="-windowSize" type="integer" min="0" value="0" label="Window size to mask bases" help="Mask any base for which there are at least -minAmbigWindow bases in a window of +-N bases around the base. Masking approach adapted from https://github.com/roblanf/sarscov2phylo/blob/master/scripts/mask_seq.py Use -windowSize=7 for same results. Default: 0" />
<param argument="-minAmbigInWindow" type="integer" min="1" value="2" label="Minimum of ambiguous characters within the window given above" help="When -windowSize is provided, mask any base for which there are at least this many N, ambiguous or gap characters within the window. Default: 2" />
</section>

<param argument="-includeNoAltN" type="boolean" truevalue="-includeNoAltN" falsevalue="" label="Include positions without defined ALT allele" help="Include base positions with no alternate alleles observed, but at least one N (missing base/no-call). Default: false" />
<param argument="-minAc" type="integer" min="0" value="0" label="Minimum allele count" help="Ignore alternate alleles observed fewer than N times. Default: 0" />
<param argument="-minAf" type="float" min="0.0" max="1.0" value="0.0" label="Minimum allele frequency" help="Ignore alternate alleles observed in less than F of non-N bases. Default: 0.0" />
Expand Down Expand Up @@ -136,7 +136,11 @@

`faToVcf`_ is a tool to extract a VCF from a multi-sequence FASTA alignment.

.. _faToVcf: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
For implementation details see faToVcf's `source code`_.

.. _faToVcf: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/utils/faToVcf/faToVcf.c

]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
2 changes: 1 addition & 1 deletion tools/ucsc_tools/maftoaxt/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Convert dataset from MAF to axt format
long_description: Convert MAF dataset to axt format. Depending on parameters and the number of alignments in the MAF file this can be a full conversion or data extraction.
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/maftoaxt
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/maftoaxt
type: unrestricted
categories:
- Convert Formats
11 changes: 8 additions & 3 deletions tools/ucsc_tools/maftoaxt/maftoaxt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Convert file from MAF to axt format
</description>
<macros>
<token name="@TOOL_VERSION@">377</token>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
Expand All @@ -25,7 +25,7 @@
$stripDb
]]></command>
<inputs>
<param name="in_maf" format="maf" type="data" label="maf file" />
<param name="in_maf" format="maf" type="data" label="MAF dataset" />

<conditional name="tar_seq">
<param name="tarSeq" type="select" label="Select target sequence" optional="false" help="Which sequence from the MAF file should be used as the target sequence. ">
Expand Down Expand Up @@ -62,9 +62,14 @@
<help><![CDATA[
**What it does**

`mafToAxt`_ is a tool to convert maf dataset to axt format. Depending on parameters and the number of alignments in the MAF file this can be a full conversion or data extraction.
`mafToAxt`_ is a tool to convert `MAF`_ dataset to `axt`_ format. Depending on parameters and the number of alignments in the MAF file this can be a full conversion or data extraction.

For implementation details see mafToAxt's `source code`_.

.. _mafToAxt: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _axt: https://genome.ucsc.edu/goldenPath/help/axt.html
.. _MAF: https://genome.ucsc.edu/FAQ/FAQformat.html#format5
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/mafToAxt/mafToAxt.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
2 changes: 0 additions & 2 deletions tools/ucsc_tools/twobittofa/.lint_skip

This file was deleted.

2 changes: 1 addition & 1 deletion tools/ucsc_tools/twobittofa/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: twoBitToFa is a tool to convert all or part of .2bit file to FASTA
long_description: twoBitToFa is a tool to convert all or part of .2bit file to FASTA
homepage_url: https://genome.ucsc.edu/goldenpath/help/twoBit.html
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/twobittofa
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/twobittofa
type: unrestricted
categories:
- Convert Formats
14 changes: 10 additions & 4 deletions tools/ucsc_tools/twobittofa/twobittofa.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<tool id="ucsc-twobittofa" name="twoBitToFa" version="@TOOL_VERSION@">
<description>Convert all or part of .2bit file to FASTA</description>
<macros>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
</xrefs>
<macros>
<token name="@TOOL_VERSION@">377</token>
</macros>
<requirements>
<requirement type="package" version="@TOOL_VERSION@">ucsc-twobittofa</requirement>
</requirements>
Expand Down Expand Up @@ -57,10 +57,16 @@ $noMask
<help><![CDATA[
**What it does**

twoBitToFa is a tool to convert all or part of .2bit file to FASTA.
`twoBitToFa`_ is a tool to convert all or part of .2bit file to FASTA.

For more information, check the `user manual <https://genome.ucsc.edu/goldenpath/help/twoBit.html>`_.

For implementation details see twoBitToFa's `source code`_.

.. _twoBitToFa: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/utils/twoBitToFa/twoBitToFa.c
]]></help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
</citations>
</tool>
2 changes: 1 addition & 1 deletion tools/ucsc_tools/ucsc_axtchain/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Chain together genome alignments
long_description: Create a chain file from a genome alignment. The chain format describes a pairwise alignment that allow gaps in both sequences simultaneously.
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axtchain
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/axtchain
type: unrestricted
categories:
- Sequence Analysis
7 changes: 5 additions & 2 deletions tools/ucsc_tools/ucsc_axtchain/axtchain.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Chain together axt alignments
</description>
<macros>
<token name="@TOOL_VERSION@">455</token>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
Expand Down Expand Up @@ -70,7 +70,7 @@
<help><![CDATA[
**What it does**

`axtChain`_ is a tool to chain together alignments. The `chain`_ format describes a pairwise alignment that allow gaps in both sequences simultaneously.
`axtChain`_ is a tool to chain together alignments in `axt`_ format. The `chain`_ format describes a pairwise alignment that allow gaps in both sequences simultaneously.


sample linearGap file (loose)::
Expand All @@ -82,9 +82,12 @@ sample linearGap file (loose)::
tGap 325 360 400 450 600 1100 3600 7600 15600 31600 56600
bothGap 625 660 700 750 900 1400 4000 8000 16000 32000 57000

For implementation details see axtChain's `source code`_.

.. _axtChain: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _chain: https://genome.ucsc.edu/goldenPath/help/chain.html
.. _axt: https://genome.ucsc.edu/goldenPath/help/axt.html
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/axtChain/axtChain.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
2 changes: 1 addition & 1 deletion tools/ucsc_tools/ucsc_axttomaf/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Convert dataset from axt to MAF format.
long_description: This is a tool from the UCSC suite to convert dataset from axt to MAF format.
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axttomaf
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/axttomaf
type: unrestricted
categories:
- Convert Formats
5 changes: 4 additions & 1 deletion tools/ucsc_tools/ucsc_axttomaf/axttomaf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Convert dataset from axt to MAF format
</description>
<macros>
<token name="@TOOL_VERSION@">377</token>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
Expand Down Expand Up @@ -95,9 +95,12 @@

`axtToMaf`_ is a tool to convert dataset from `axt format`_ to `MAF format`_.

For implementation details see axtToMaf's `source code`_.

.. _axtToMaf: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _axt format: https://genome.ucsc.edu/goldenPath/help/axt.html
.. _MAF format: https://genome.ucsc.edu/FAQ/FAQformat.html#format5
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/axtToMaf/axtToMaf.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
2 changes: 1 addition & 1 deletion tools/ucsc_tools/ucsc_chainnet/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Make alignment nets out of chains
long_description:
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/ucsc_chainnet
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainnet
type: unrestricted
categories:
- Sequence Analysis
2 changes: 1 addition & 1 deletion tools/ucsc_tools/ucsc_chainprenet/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Remove chains that don't have a chance of being netted
long_description: Some chains can't be converted to a net, this tool filters them out. Part of the UCSC genome browser utilities to work with the chain format.
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainprenet
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/chainprenet
type: unrestricted
categories:
- Sequence Analysis
9 changes: 7 additions & 2 deletions tools/ucsc_tools/ucsc_chainprenet/chainprenet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Remove chains that don't have a chance of being netted
</description>
<macros>
<token name="@TOOL_VERSION@">377</token>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
Expand Down Expand Up @@ -102,9 +102,14 @@
<help><![CDATA[
**What it does**

`chainPreNet`_ is a tool to remove chains that don't have a chance of being netted
`chainPreNet`_ is a tool to remove `chains`_ that don't have a chance of being `netted`_.

For implementation details see chainPreNet's `source code`_.

.. _chainPreNet: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _chains: https://genome.ucsc.edu/goldenPath/help/chain.html
.. _netted: https://genome.ucsc.edu/goldenPath/help/net.html
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/chainPreNet/chainPreNet.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
2 changes: 1 addition & 1 deletion tools/ucsc_tools/ucsc_chainsort/.shed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ owner: iuc
description: Sort chains. By default sorts by score.
long_description: Note this loads all chains into memory, so it is not suitable for large sets. Instead, run chainSort on multiple small files, followed by chainMergeSort.
homepage_url: http://hgdownload.cse.ucsc.edu/admin/exe/
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainsort
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/chainsort
type: unrestricted
categories:
- Sequence Analysis
8 changes: 6 additions & 2 deletions tools/ucsc_tools/ucsc_chainsort/chainsort.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,16 @@
<help><![CDATA[
**What it does**

`chainSort`_ is a tool to sort chains.
`chainSort`_ is a tool to sort `chains`_.

Note this tool loads all chains into memory, so it is not suitable for large datasets. Instead, run chainSort on multiple small dataset, followed by chainMergeSort.

For implementation details see chainSort's `source code`_.

.. _chainSort: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
]]> </help>
.. _chains: https://genome.ucsc.edu/goldenPath/help/chain.html
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/chainSort/chainSort.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
</citations>
Expand Down
6 changes: 5 additions & 1 deletion tools/ucsc_tools/ucsc_netfilter/netfilter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,13 @@
<help><![CDATA[
**What it does**

`netFilter`_ is a tool to filter out parts of net. What passes filter goes to output. Note a net is a recursive data structure. If a parent fails to pass the filter, the children are not even considered.
`netFilter`_ is a tool to filter out parts of `net`_. What passes filter goes to output. Note a net is a recursive data structure. If a parent fails to pass the filter, the children are not even considered.

For implementation details see netFilter's `source code`_.

.. _netFilter: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _net: https://genome.ucsc.edu/goldenPath/help/net.html
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/netFilter/netFilter.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
5 changes: 4 additions & 1 deletion tools/ucsc_tools/ucsc_netsyntenic/netsyntenic.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@
<help><![CDATA[
**What it does**

`netSyntenic`_ is a tool to add synteny info to a net. See details of `net format`.
`netSyntenic`_ is a tool to add synteny info to a net. See details of `net format`_.

For implementation details see netSyntenic's `source code`_.

.. _netSyntenic: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _net format: https://genome.ucsc.edu/goldenPath/help/net.html
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/hg/mouseStuff/netSyntenic/netSyntenic.c
]]> </help>
<citations>
<citation type="doi">10.1093/bib/bbs038</citation>
Expand Down
11 changes: 7 additions & 4 deletions tools/ucsc_tools/wigtobigwig/wigtobigwig.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<tool id="ucsc_wigtobigwig" name="wigtobigwig" version="@TOOL_VERSION@+galaxy0" profile="22.05">
<description>bedGraph or Wig to bigWig converter</description>
<macros>
<token name="@TOOL_VERSION@">447</token>
<token name="@TOOL_VERSION@">469</token>
</macros>
<xrefs>
<xref type="bio.tools">UCSC_Genome_Browser_Utilities</xref>
Expand Down Expand Up @@ -134,7 +134,7 @@
<output name="out_file1" file="merlin.bigwig" compare="sim_size"/>
</test>
</tests>
<help>
<help><![CDATA[
**Purpose**

This tool converts bedgraph or wiggle data into bigWig data for visualisation in browsers. The JBrowse tool can display these with other interesting tracks.
Expand Down Expand Up @@ -162,9 +162,12 @@ This tool converts bedgraph or wiggle data into bigWig data for visualisation in

- The **BedGraph format** is described in detail at the `UCSC Bioinformatics website`_

.. _UCSC Bioinformatics website: http://genome.ucsc.edu/goldenPath/help/bedgraph.html
For implementation details see wigToBigWig's `source code`_ and accompanying `docs`_.

</help>
.. _UCSC Bioinformatics website: http://genome.ucsc.edu/goldenPath/help/bedgraph.html
.. _docs: http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt
.. _source code: https://github.com/ucscGenomeBrowser/kent/blob/master/src/utils/wigToBigWig/wigToBigWig.c
]]> </help>
<citations>
<citation type="doi">10.1093/bioinformatics/btq351</citation>
</citations>
Expand Down