Mercurial > repos > ebi-gxa > sccaf_regress_out
comparison sccaf_regress_out.xml @ 0:885db50f1bc1 draft
planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf commit 39b0809db1e17c2a24930fe8fb8ceaf3ea454a7d
author | ebi-gxa |
---|---|
date | Tue, 19 Nov 2019 13:06:04 -0500 |
parents | |
children | 5ef0610e9f50 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:885db50f1bc1 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <tool id="sccaf_regress_out" name="SCCAF mulitple regress out" version="@TOOL_VERSION@+galaxy0"> | |
3 <description>with multiple categorical keys on an AnnData object.</description> | |
4 <macros> | |
5 <import>sccaf_macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <command detect_errors="exit_code"><![CDATA[ | |
9 ln -s '${input_obj_file}' input.h5 && | |
10 sccaf-regress-out -i input.h5 -o output.h5 -k '${keys_to_regress}' | |
11 ]]></command> | |
12 <inputs> | |
13 <param name="input_obj_file" argument="input-object-file" type="data" format="h5" label="Input object in hdf5 AnnData format"/> | |
14 <param name="keys_to_regress" label="Keys to regress" help="Comma separated keys for regressing out; they need to exist in the observations part of the AnnData object." type="text"/> | |
15 </inputs> | |
16 <outputs> | |
17 <data name="output" format="h5" from_work_dir="output.h5" label="${tool.name} on ${on_string}: regressesed out on ${keys_to_regress}"/> | |
18 </outputs> | |
19 | |
20 <tests> | |
21 <test> | |
22 <param name="input_obj_file" value="find_cluster.h5"/> | |
23 <param name="input_format" value="anndata"/> | |
24 <param name="color_by" value="louvain"/> | |
25 <output name="output" file="output.h5" ftype="h5" compare="sim_size"/> | |
26 </test> | |
27 </tests> | |
28 | |
29 <help><![CDATA[ | |
30 ============================= | |
31 Operations on AnnData objects | |
32 ============================= | |
33 | |
34 Performs the following operations: | |
35 | |
36 * Change observation fields, mostly for downstreaming processes convenience. Multiple fields can be changed as one. | |
37 * Flag genes that start with a certain text: useful for flagging mitochondrial, spikes or other groups of genes. | |
38 * For the flags created, calculates qc metrics (pct_<flag>_counts). | |
39 * Calculates `n_genes`, `n_counts` for cells and `n_cells`, `n_counts` for genes. | |
40 * For top <N> genes specified, calculate qc metrics (pct_counts_in_top_<N>_genes). | |
41 | |
42 This functionality will probably be added in the future to a larger package. | |
43 ]]></help> | |
44 <!-- <expand macro="citations"/> --> | |
45 </tool> |