Repository 'seurat_export_cellbrowser'
hg clone https://toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_export_cellbrowser

Changeset 0:8c2b1d2659df (2019-04-03)
Next changeset 1:80eec773c961 (2019-11-25)
Commit message:
planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 9bf9a6e46a330890be932f60d1d996dd166426c4
added:
README
seurat_export_cellbrowser.xml
seurat_macros.xml
b
diff -r 000000000000 -r 8c2b1d2659df README
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/README Wed Apr 03 11:16:38 2019 -0400
b
@@ -0,0 +1,1 @@
+Seurat tools
b
diff -r 000000000000 -r 8c2b1d2659df seurat_export_cellbrowser.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/seurat_export_cellbrowser.xml Wed Apr 03 11:16:38 2019 -0400
[
@@ -0,0 +1,71 @@
+<tool id="seurat_export_cellbrowser" name="Seurat Export2CellBrowser" version="2.3.1+galaxy0">
+    <description>produces files for UCSC CellBrowser import.</description>
+    <macros>
+        <import>seurat_macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <expand macro="version" />
+    <command detect_errors="exit_code"><![CDATA[
+#if $markers_file:
+  cp '$markers_file' markers.csv;
+#end if
+
+seurat-export-cellbrowser.R -i '$rds_input'
+
+#if $markers_file:
+-m markers.csv
+#end if
+
+-o output_html;
+
+cd output_html && tar -cf '$output' *;
+]]></command>
+
+    <inputs>
+        <param name="rds_input" type="data" format="rdata" label="Seurat RDS object" />
+        <param name="markers_file" type="data" format="txt" label="Marker genes file from Seurat" />
+    </inputs>
+
+    <outputs>
+        <data name="output" format="tar" label="${tool.name} on ${on_string}: UCSC CellBrowser bundle"/>
+    </outputs>
+
+    <tests>
+        <test>
+            <param name="rds_input" ftype="rdata" value="out_runtsne.rds"/>
+            <param name="markers_file" ftype="txt" value="out_markers.csv"/>
+            <output name="output" ftype="tar" value="out_cellbrowser_bundle.tar"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+.. class:: infomark
+
+**What it does**
+
+Seurat_ is a toolkit for quality control, analysis, and exploration of single cell RNA sequencing data.
+It is developed and maintained by the `Satija Lab`_ at NYGC. Seurat aims to enable users to identify and
+interpret sources of heterogeneity from single cell transcriptomic measurements, and to integrate diverse
+types of single cell data.
+
+This tool converts a Seurat object (hopefully with t-SNE results) and its accompanying marker genes file (optional)
+to a tar that can be feed to the UCSC CellBrowser tool.
+-----
+
+**Inputs**
+
+    * RDS object
+
+-----
+
+**Outputs**
+
+    * Text file
+
+.. _Seurat: https://www.nature.com/articles/nbt.4096
+.. _Satija Lab: https://satijalab.org/seurat/
+
+@VERSION_HISTORY@
+
+]]></help>
+      <expand macro="citations" />
+</tool>
b
diff -r 000000000000 -r 8c2b1d2659df seurat_macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/seurat_macros.xml Wed Apr 03 11:16:38 2019 -0400
[
@@ -0,0 +1,50 @@
+<?xml version="1.0"?>
+<macros>
+
+    <token name="@VERSION@">0.0.5</token>
+
+    <xml name="requirements">
+        <requirements>
+            <requirement type="package" version="@VERSION@">seurat-scripts</requirement>
+        </requirements>
+    </xml>
+
+    <xml name="version">
+     <version_command><![CDATA[
+echo $(R --version | grep version | grep -v GNU)", seurat version" $(R --vanilla --slave -e "library(seurat); cat(sessionInfo()\$otherPkgs\$seurat\$Version)" 2> /dev/null | grep -v -i "WARNING: ")
+    ]]></version_command>
+    </xml>
+
+    <xml name="genes-use-input">
+      <param name="genes_use" argument="--genes-use" optional="true" type="data" format="tsv, txt" label="Genes to use" help="A file with gene names to use in construction of SNN graph if building directly based on expression data rather than a dimensionally reduced representation (i.e. PCs)."/>
+    </xml>
+    <xml name="dims-use-input">
+      <param name="dims_use" argument="--dims-use" min="1" optional="true" type="integer" label="PCA Dimensions to use" help="Number of PCs (dimensions) to use in construction of the SNN graph."/>
+    </xml>
+
+    <token name="@VERSION_HISTORY@"><![CDATA[
+**Version history**
+
+0.0.1: Initial contribution. Maria Doyle, https://github.com/mblue9.
+
+2.3.1+galaxy0: Improved documentation and further exposition of all script's options. Pablo Moreno, Jonathan Manning and Ni Huang, Expression Atlas team https://www.ebi.ac.uk/gxa/home  at
+EMBL-EBI https://www.ebi.ac.uk/. Parts obtained from wrappers from Christophe Antoniewski(https://github.com/drosofff) and Lea Bellenger(https://github.com/bellenger-l).
+      ]]></token>
+
+
+    <xml name="citations">
+        <citations>
+            <citation type="doi">10.1038/nbt.4096</citation>
+            <citation type="bibtex">
+              @misc{r-seurat-scripts.git,
+              author = {Jonathan Manning, Pablo Moreno, EBI Gene Expression Team},
+              year = {2018},
+              title = {Seurat-scripts: command line interface for Seurat},
+              publisher = {GitHub},
+              journal = {GitHub repository},
+              url = {https://github.com/ebi-gene-expression-group/r-seurat-scripts.git},
+            }
+            </citation>
+        </citations>
+    </xml>
+</macros>