comparison monocle3-preprocess.xml @ 1:0869b0264af1 draft

planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 08ac0ad9182623944c4546f8ea8db6a1a537f7eb
author ebi-gxa
date Wed, 29 Jan 2020 10:38:23 -0500
parents 384b9bcf2807
children 273d11a83e42
comparison
equal deleted inserted replaced
0:384b9bcf2807 1:0869b0264af1
14 --norm-method '${norm_method}' 14 --norm-method '${norm_method}'
15 #if $use_genes 15 #if $use_genes
16 --use-genes '${use_genes}' 16 --use-genes '${use_genes}'
17 #end if 17 #end if
18 #if $residual_model_formula_str 18 #if $residual_model_formula_str
19 --residual-model-formula-str '~${residual_model_formula_str}' 19 --residual-model-formula-str '${residual_model_formula_str}'
20 #end if 20 #end if
21 #if $pseudo_count 21 #if $pseudo_count
22 --pseudo-count '${pseudo_count}' 22 --pseudo-count '${pseudo_count}'
23 #end if 23 #end if
24 #if $no_scaling 24 #if $no_scaling
42 <param name="norm_method" argument="--norm-method" type="select" label="Determines how to transform expression values prior to reducing dimensionality."> 42 <param name="norm_method" argument="--norm-method" type="select" label="Determines how to transform expression values prior to reducing dimensionality.">
43 <option value="log" selected="true">Size factor correction and log transformation</option> 43 <option value="log" selected="true">Size factor correction and log transformation</option>
44 <option value="size_only">Size factor correction only</option> 44 <option value="size_only">Size factor correction only</option>
45 </param> 45 </param>
46 <param name="use_genes" argument="--use-genes" type="text" optional="true" label="Manually subset the gene pool to these genes for dimensionality reduction."/> 46 <param name="use_genes" argument="--use-genes" type="text" optional="true" label="Manually subset the gene pool to these genes for dimensionality reduction."/>
47 <param name="residual_model_formula_str" argument="--residual-model-formula-str" type="text" optional="true" label="A string model formula specifying effects to subtract from the data (excluding the leading ~)."/> 47 <param name="residual_model_formula_str" argument="--residual-model-formula-str" type="text" optional="true" label="A string model formula specifying effects to subtract from the data.">
48 <sanitizer>
49 <valid initial="string.printable"/>
50 </sanitizer>
51 </param>
48 <param name="pseudo_count" argument="--pseudo-count" optional="true" type="float" value="1" label="Amount to increase expression values before dimensionality reduction."/> 52 <param name="pseudo_count" argument="--pseudo-count" optional="true" type="float" value="1" label="Amount to increase expression values before dimensionality reduction."/>
49 <param name="no_scaling" argument="--no-scaling" type="boolean" checked="false" label="When this option is NOT set, scale each gene before running trajectory reconstruction."/> 53 <param name="no_scaling" argument="--no-scaling" type="boolean" checked="false" label="When this option is NOT set, scale each gene before running trajectory reconstruction."/>
50 <expand macro="verbose_flag"/> 54 <expand macro="verbose_flag"/>
51 </inputs> 55 </inputs>
52 56