-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc3-sc3-estimate-k.xml
43 lines (35 loc) · 1.29 KB
/
sc3-sc3-estimate-k.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<tool id="sc3-sc3-estimate-k" name="SC3 estimate k" version="0.1.0">
<description>Estimate the best K for clustering</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="requirements" />
<command detect_errors="exit_code"><![CDATA[
sc3-sc3-estimate-k.R -i "$input1" -t "$output1" -o R_scater_qc.rds
]]></command>
<inputs>
<param type="data" name="input1" format="rds" />
</inputs>
<outputs>
<data name="output1" format="txt" />
</outputs>
<tests>
<test>
<param name="input1" value="R_sc3_transformed.rds"/>
<output name="output1" file="sc3-estimated-k.txt"/>
</test>
</tests>
<help><![CDATA[
Usage: /Users/ct5/anaconda3/envs/galaxy/bin/sc3-sc3-estimate-k.R [options]
Options:
-i INPUT-OBJECT-FILE, --input-object-file=INPUT-OBJECT-FILE
File name in which a processed SC3 object can be found.
-o OUTPUT-OBJECT-FILE, --output-object-file=OUTPUT-OBJECT-FILE
File name in which to store the SingleCellExperiment object with estimated k'.
-t OUTPUT-TEXT-FILE, --output-text-file=OUTPUT-TEXT-FILE
Text file name in which to store the estimated k'.
-h, --help
Show this help message and exit
]]></help>
<expand macro="citations" />
</tool>