0
|
1 <?xml version="1.0" ?>
|
14
|
2 <tool id="qiime_feature-classifier_classify-sklearn" name="qiime feature-classifier classify-sklearn"
|
|
3 version="2020.8">
|
|
4 <description>Pre-fitted sklearn-based taxonomy classifier</description>
|
|
5 <requirements>
|
|
6 <requirement type="package" version="2020.8">qiime2</requirement>
|
|
7 </requirements>
|
|
8 <command><![CDATA[
|
0
|
9 qiime feature-classifier classify-sklearn
|
|
10
|
|
11 --i-reads=$ireads
|
|
12
|
14
|
13 --i-classifier=$iclassifier
|
0
|
14
|
14
|
15 --p-n-jobs=$pnjobs
|
0
|
16
|
14
|
17 #if str($pconfidence) != 'None':
|
|
18 --p-confidence=$pconfidence
|
0
|
19 #end if
|
|
20
|
|
21 #if str($preadorientation) != 'None':
|
14
|
22 --p-read-orientation=$preadorientation
|
0
|
23 #end if
|
|
24
|
|
25 --o-classification=oclassification
|
14
|
26
|
|
27 #if str($examples) != 'None':
|
|
28 --examples=$examples
|
|
29 #end if
|
|
30
|
0
|
31 ;
|
|
32 cp oclassification.qza $oclassification
|
6
|
33
|
14
|
34 ]]></command>
|
|
35 <inputs>
|
|
36 <param format="qza,no_unzip.zip" label="--i-reads: ARTIFACT FeatureData[Sequence] The feature data to be classified. [required]" name="ireads" optional="False" type="data" />
|
|
37 <param format="qza,no_unzip.zip" label="--i-classifier: ARTIFACT TaxonomicClassifier The taxonomic classifier for classifying the reads. [required]" name="iclassifier" optional="False" type="data" />
|
|
38 <param label="--p-confidence: " name="pconfidence" optional="True" type="select">
|
|
39 <option selected="True" value="None">Selection is Optional</option>
|
|
40 <option value="Float % Range(0">Float % Range(0</option>
|
|
41 <option value="1">1</option>
|
|
42 <option value="inclusive_end=True">inclusive_end=True</option>
|
|
43 </param>
|
|
44 <param label="--p-read-orientation: " name="preadorientation" optional="True" type="select">
|
|
45 <option selected="True" value="None">Selection is Optional</option>
|
|
46 <option value="same">same</option>
|
|
47 <option value="reverse-complement">reverse-complement</option>
|
|
48 <option value="auto">auto</option>
|
|
49 </param>
|
|
50 <param label="--examples: Show usage examples and exit." name="examples" optional="False" type="data" />
|
|
51
|
|
52 </inputs>
|
|
53
|
|
54 <outputs>
|
|
55 <data format="qza" label="${tool.name} on ${on_string}: classification.qza" name="oclassification" />
|
|
56
|
|
57 </outputs>
|
|
58
|
|
59 <help><![CDATA[
|
0
|
60 Pre-fitted sklearn-based taxonomy classifier
|
14
|
61 ###############################################################
|
0
|
62
|
|
63 Classify reads by taxon using a fitted classifier.
|
|
64
|
|
65 Parameters
|
|
66 ----------
|
|
67 reads : FeatureData[Sequence]
|
|
68 The feature data to be classified.
|
|
69 classifier : TaxonomicClassifier
|
|
70 The taxonomic classifier for classifying the reads.
|
|
71 reads_per_batch : Int % Range(0, None), optional
|
14
|
72 Number of reads to process in each batch. If "auto", this parameter is
|
0
|
73 autoscaled to min( number of query sequences / n_jobs, 20000).
|
14
|
74 n_jobs : Int, optional
|
|
75 The maximum number of concurrently worker processes. If -1 all CPUs are
|
|
76 used. If 1 is given, no parallel computing code is used at all, which
|
|
77 is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are
|
|
78 used. Thus for n_jobs = -2, all CPUs but one are used.
|
0
|
79 pre_dispatch : Str, optional
|
|
80 "all" or expression, as in "3*n_jobs". The number of batches (of tasks)
|
|
81 to be pre-dispatched.
|
14
|
82 confidence : Float % Range(0, 1, inclusive_end=True) | Str % Choices('disable'), optional
|
|
83 Confidence threshold for limiting taxonomic depth. Set to "disable" to
|
0
|
84 disable confidence calculation, or 0 to calculate confidence but not
|
|
85 apply it to limit the taxonomic depth of the assignments.
|
14
|
86 read_orientation : Str % Choices('same', 'reverse-complement', 'auto'), optional
|
0
|
87 Direction of reads with respect to reference sequences. same will cause
|
|
88 reads to be classified unchanged; reverse-complement will cause reads
|
14
|
89 to be reversed and complemented prior to classification. "auto" will
|
|
90 autodetect orientation based on the confidence estimates for the first
|
|
91 100 reads.
|
0
|
92
|
|
93 Returns
|
|
94 -------
|
|
95 classification : FeatureData[Taxonomy]
|
14
|
96 ]]></help>
|
|
97 <macros>
|
0
|
98 <import>qiime_citation.xml</import>
|
14
|
99 </macros>
|
|
100 <expand macro="qiime_citation"/>
|
|
101 </tool> |