view CountUniqueIDs.xml @ 4:328b631f7e94 draft default tip

Version 1.0.2 (updates required bioperl to 1.7.2)
author pjbriggs
date Fri, 05 Oct 2018 03:22:23 -0400
parents b42da9dc4507
children
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<tool id="gff_unique_count" name="Count unique seq in GFF" version="@VERSION@">
  <description>Gives the non-redundant count of sequences</description>
  <macros>
    <import>motif_tools_macros.xml</import>
  </macros>
  <expand macro="requirements" />
  <command><![CDATA[
  perl $__tool_directory__/CountUniqueIDs.pl $input $output
  ]]></command>
  <inputs>
    <param format="gff" name="input" type="data" label="GFF file" help="Select a GFF file."/>
  </inputs>
  <outputs>
    <data format="txt" name="output" />
  </outputs>

  <help>
.. class:: infomark

**What it does**

This tool counts the number non-redundant sequence identifiers (seqname) in a GFF file.  The tool was originally written to read a GFF file containing set of motif matches and report the number of sequences that contain one or more instances of the scanned motif.

----

.. class:: infomark

**Options**

A GFF formated file is required.

----

.. class:: infomark

**Credits**

This Galaxy tool has been developed within the Bioinformatics Core Facility at the University of Manchester. It runs the CountUniqueIDs.pl Perl script that was written by Ian Donaldson.

Please kindly acknowledge both this Galaxy tool and CountUniqueIDs.pl if you use it.
  </help>

</tool>