diff transit_hmm.xml @ 0:5f4ab92abd97 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ commit 9ffba16c072c7dafe4ef0b70cd2ef166fbe903d0
author iuc
date Mon, 17 Dec 2018 11:03:52 -0500
parents
children 46e37fd330e8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/transit_hmm.xml	Mon Dec 17 11:03:52 2018 -0500
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<tool id="transit_hmm" name="HMM" version="@VERSION@+galaxy0">
+    <description>- determine essentiality of a genome</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <command detect_errors="exit_code"><![CDATA[
+    	@LINK_INPUTS@
+        transit hmm $input_files annotation.dat transit_out.txt
+        @STANDARD_OPTIONS@
+        -r $replicates
+        $loess
+        ]]>
+    </command>
+    <inputs>
+        <expand macro="standard_inputs">
+        	<expand macro="replicates" />
+            <param name="loess" argument="-l" type="boolean" truevalue="-l" falsevalue="" label="Perform LOESS Correction" help="Helps remove possible genomic position bias." />
+        </expand>
+    </inputs>
+    <outputs>
+        <expand macro="outputs">
+        	<data name="genes" from_work_dir="transit_out_genes.txt" format="tabular" label="${tool.name} on ${on_string} Genes" />
+        </expand>
+    </outputs>
+    <tests>
+        <test>
+            <param name="inputs" ftype="wig" value="transit-in1-rep1.wig,transit-in1-rep2.wig" />
+            <param name="annotation" ftype="gff3" value="transit-in1.gff3" />
+            <output name="sites" file="hmm-sites1.txt" ftype="tabular" />
+            <output name="genes" file="hmm-genes1.txt" ftype="tabular" />
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+The HMM method can be used to determine the essentiality of the entire genome, as opposed to gene-level analysis of the other methods. It is capable of identifying regions that have unusually high or unusually low read counts (i.e. growth advantage or growth defect regions), in addition to the more common categories of essential and non-essential.
+]]></help>
+    <expand macro="citations" />
+</tool>