# HG changeset patch # User ebi-gxa # Date 1574680197 18000 # Node ID 7895b4bb624733608619c627e70a0841b558a15b # Parent fde95fe95f15d9baeeff3dde61e17b137bce3e5b planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 0463f230d18201c740851d72e31a5024f391207f diff -r fde95fe95f15 -r 7895b4bb6247 seurat_find_markers.xml --- a/seurat_find_markers.xml Wed Apr 03 11:17:29 2019 -0400 +++ b/seurat_find_markers.xml Mon Nov 25 06:09:57 2019 -0500 @@ -1,4 +1,4 @@ - + find markers (differentially expressed genes) seurat_macros.xml @@ -8,7 +8,7 @@ - + @@ -74,7 +74,7 @@ - + @@ -88,12 +88,17 @@ **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 finds markers (differentially expressed genes) for each of the identity classes in a dataset. +It outputs a text file containing a ranked list of putative markers, and associated statistics (p-values, ROC score, etc.) -This tool finds markers (differentially expressed genes) for each of the identity classes in a dataset. It outputs a text file containing a ranked list of putative markers, and associated statistics (p-values, ROC score, etc.) +p-value adjustment is performed using bonferroni correction based on the total +number of genes in the dataset. Other correction methods are not recommended, +as Seurat pre-filters genes using the arguments above, reducing the number of +tests performed. Lastly, as Aaron Lun has pointed out, p-values should be +interpreted cautiously, as the genes used for clustering are the same genes +tested for differential expression. + +@SEURAT_INTRO@ ----- diff -r fde95fe95f15 -r 7895b4bb6247 seurat_macros.xml --- a/seurat_macros.xml Wed Apr 03 11:17:29 2019 -0400 +++ b/seurat_macros.xml Mon Nov 25 06:09:57 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 + + - + + +