# HG changeset patch # User ebi-gxa # Date 1574680249 18000 # Node ID 265dcc5bc1e810cfbd154c5c282c7ac6f0dd1b76 # Parent 1b8566f3c1d0f23d0859ebf521b1d9a9829a13f3 planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 0463f230d18201c740851d72e31a5024f391207f diff -r 1b8566f3c1d0 -r 265dcc5bc1e8 seurat_macros.xml --- a/seurat_macros.xml Wed Apr 03 11:18:21 2019 -0400 +++ b/seurat_macros.xml Mon Nov 25 06:10:49 2019 -0500 @@ -1,34 +1,110 @@ - - 0.0.5 - + 0.0.6 + 3.1.1 seurat-scripts - /dev/null | grep -v -i "WARNING: ") ]]> + + + + + + + + + + + + + + + + + + + + + + + + + #if $input.format == "anndata" + --input-object-file '$input.anndata_file' --input-format anndata + #else if $input.format == "loom" + --input-object-file '$input.loom_file' --input-format loom + #else if $input.format == "rds_seurat" + --input-object-file '$input.rds_seurat_file' --input-format seurat + #else if $input.format == "rds_sce" + --input-object-file '$input.rds_sce_file' --input-format singlecellexperiment + #end if + + + + + + + + + + + + + format == 'loom' + + + format == 'rds_seurat' + + + format == 'rds_sce' + + + + + #if $format == "anndata" + --output-object-file '$anndata_file' --output-format anndata + #else if $format == "loom" + --output-object-file seurat_obj.loom --output-format loom + #else if $format == "rds_seurat" + --output-object-file '$rds_seurat_file' --output-format seurat + #else if $format == "rds_sce" + --output-object-file '$rds_sce_file' --output-format singlecellexperiment + #end if + + - + + + diff -r 1b8566f3c1d0 -r 265dcc5bc1e8 seurat_read10x.xml --- a/seurat_read10x.xml Wed Apr 03 11:18:21 2019 -0400 +++ b/seurat_read10x.xml Mon Nov 25 06:10:49 2019 -0500 @@ -1,4 +1,4 @@ - + Loads 10x data into a serialized seurat R object seurat_macros.xml @@ -12,15 +12,32 @@ ln -s "$genes" genes.tsv; ln -s "$barcodes" barcodes.tsv; -seurat-read-10x.R -d ./ -o "$R_seurat_serialized" +seurat-read-10x.R -d ./ + +#if $metadata + --metadata '$metadata' +#end if +#if $min_cells + --min-cells '$min_cells' +#end if +#if $min_features + --min-features '$min_features' +#end if + +@OUTPUT_OBJECT@ + ]]> + + + + - + @@ -28,7 +45,7 @@ - + @@ -38,10 +55,7 @@ **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. See the `Seurat Guided Clustering tutorial`_ for more information. + @SEURAT_INTRO@ **Read 10x-Genomics-formatted mtx directory (`read_10x_mtx`)** @@ -61,6 +75,7 @@ * Raw expression quantification as a sparse matrix in Matrix Market format, where the each column is a gene and each row is a barcode/cell. * A gene table of at least two columns where the first column gives the gene IDs. * A barcode/cell table of at least one column giving the barcode/cell IDs. + * Optionally, a file with cell metadata. **Outputs** * R object for Seurat