Mercurial > repos > iuc > seqtk
diff seqtk_randbase.xml @ 0:e0a0fd938de4 draft
Uploaded
author | iuc |
---|---|
date | Thu, 05 Feb 2015 11:52:40 -0500 |
parents | |
children | f73729b62b51 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seqtk_randbase.xml Thu Feb 05 11:52:40 2015 -0500 @@ -0,0 +1,45 @@ +<?xml version="1.0"?> +<tool id="seqtk_randbase" name="seqtk_randbase" version="@WRAPPER_VERSION@.0"> + <description>choose a random base from hets</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <expand macro="stdio"/> + <command><![CDATA[seqtk randbase + $in_file +> $default]]></command> + <inputs> + <expand macro="in_faq"/> + </inputs> + <outputs> + <data format_source="in_file" hidden="false" name="default" label="Unambiguous $in_file.name"/> + </outputs> + <tests> + <test> + <param name="in_file" value="seqtk_randbase.fa"/> + <output name="default" file="seqtk_randbase.out" ftype="fasta"/> + </test> + </tests> + <help><![CDATA[ +**What it does** + +Randomly resolves ambiguous bases + +:: + + # Input fasta + >ambig + ACGTMRWSYK + +results in + +:: + + # Output result + >ambig + ACGTCGTGTT + +@ATTRIBUTION@ +]]></help> +</tool>