comparison scanpy-run-paga.xml @ 11:a1a7650c5cf2 draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy commit 62f47287c7e8449c59a1f1f454852ddc669b1b1e-dirty"
author ebi-gxa
date Mon, 07 Sep 2020 14:01:54 +0000
parents eba43c4d86b9
children 4e7d55438238
comparison
equal deleted inserted replaced
10:ed2231b3edff 11:a1a7650c5cf2
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <tool id="scanpy_run_paga" name="Scanpy PAGA" version="@TOOL_VERSION@+galaxy10" profile="@PROFILE@"> 2 <tool id="scanpy_run_paga" name="Scanpy PAGA" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@">
3 <description>trajectory inference</description> 3 <description>trajectory inference</description>
4 <macros> 4 <macros>
5 <import>scanpy_macros2.xml</import> 5 <import>scanpy_macros2.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
8 <command detect_errors="exit_code"><![CDATA[ 8 <command detect_errors="exit_code"><![CDATA[
9 ln -s '${input_obj_file}' input.h5 && 9 ln -s '${input_obj_file}' input.h5 &&
10 PYTHONIOENCODING=utf-8 scanpy-cli paga 10 PYTHONIOENCODING=utf-8 scanpy-cli paga
11 --groups '${groups}' 11 --groups '${groups}'
12 #if $use_graph 12 #if $neighbors_key
13 --use-graph '${use_graph}' 13 --neighbors-key '${neighbors_key}'
14 #end if 14 #end if
15 #if $key_added 15 #if $key_added
16 --key-added '${key_added}' 16 --key-added '${key_added}'
17 #end if
18 #if $use_rna_velocity
19 --use-rna-velocity
17 #end if 20 #end if
18 @INPUT_OPTS@ 21 @INPUT_OPTS@
19 @OUTPUT_OPTS@ 22 @OUTPUT_OPTS@
20 ]]></command> 23 ]]></command>
21 24
22 <inputs> 25 <inputs>
23 <expand macro="input_object_params"/> 26 <expand macro="input_object_params"/>
24 <expand macro="output_object_params"/> 27 <expand macro="output_object_params"/>
25 28
26 <param name="groups" argument="--groups" type="text" label="Name of the clustering"/> 29 <param name="groups" argument="--groups" type="text" label="Name of the clustering"/>
27 <param name="use_graph" argument="--use-graph" value="neighbors" type="text" label="Name of the slot that holds the KNN graph"/> 30 <param name="neighbors_key" argument="--neighbors-key" value="neighbors" type="text" label="Name of the slot that holds the KNN graph"/>
28 <param name="key_added" argument="--key-added" type="text" optional="true" label="Additional suffix to the name of the slot to save the calculated trajectory"/> 31 <param name="key_added" argument="--key-added" type="text" optional="true" label="Additional suffix to the name of the slot to save the calculated trajectory"/>
32 <param name="use_rna_velocity" type="boolean" checked="false" label="Use RNA velocity to orient edges in the abstracted graph and estimate transitions." help=" Requires that adata.uns contains a directed single-cell graph with key velocity_graph. This feature might be subject to change in the future."/>
29 </inputs> 33 </inputs>
30 34
31 <outputs> 35 <outputs>
32 <expand macro="output_data_obj" description="PAGA object"/> 36 <expand macro="output_data_obj" description="PAGA object"/>
33 </outputs> 37 </outputs>
34 38
35 <tests> 39 <tests>
36 <test> 40 <test>
37 <param name="input_obj_file" value="compute_graph.h5"/> 41 <param name="input_obj_file" value="find_cluster.h5"/>
38 <param name="input_format" value="anndata"/> 42 <param name="input_format" value="anndata"/>
39 <param name="output_format" value="anndata"/> 43 <param name="output_format" value="anndata"/>
40 <param name="groups" value="leiden"/> 44 <param name="groups" value="louvain"/>
41 <param name="use_graph" value="neighbors"/> 45 <param name="neighbors_key" value="neighbors"/>
42 <output name="output_h5" file="paga.h5" ftype="h5" compare="sim_size"/> 46 <output name="output_h5" file="paga.h5" ftype="h5" compare="sim_size"/>
43 </test> 47 </test>
44 </tests> 48 </tests>
45 49
46 <help><![CDATA[ 50 <help><![CDATA[