changeset 4:e4e1f98e82d8 draft

Uploaded
author dktanwar
date Mon, 11 Dec 2017 09:49:10 -0500
parents afbb19a68290
children 4af6a6558160
files GSEA.xml
diffstat 1 files changed, 33 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GSEA.xml	Mon Dec 11 09:49:10 2017 -0500
@@ -0,0 +1,33 @@
+<tool id="GSEA" name="Gene Set Enrichment Analysis" version="0.1.0">
+  <command detect_errors="exit_code"><![CDATA[
+        Rscript $__tool_directory__/GSEA.R --input1 $Ranked_list --input2 $Pathway_database --output $output
+    ]]></command>
+  <inputs>
+    <param type="data" name="Ranked_list" format="txt" />
+    <param type="data" name="Pathway_database" format="txt" />
+  </inputs>
+  <outputs>
+    <data name="output" format="txt" />
+  </outputs>
+  <tests>
+    <test>
+      <param name="Ranked_list" value="ranked_genes_list.rnk"/>
+      <param name="Pathway_database" value="ouse.gmt"/>
+      <output name="output" file="GSEA_results.txt"/>
+    </test>
+  </tests>
+  <help><![CDATA[
+        Write the tool help section here.
+    ]]></help>
+  <citations>
+    <citation type="bibtex">
+      @misc{github01_mismatch_removal,
+      author = {LastTODO, FirstTODO},
+      year = {TODO},
+      title = {01_mismatch_removal},
+      publisher = {GitHub},
+      journal = {GitHub repository},
+      url = {https://github.com/dktanwar/Galaxy_Tools/tree/master/01_mismatch_removal},
+      }</citation>
+  </citations>
+</tool>