comparison qiime_demux_summarize.xml @ 0:09b7bcb72fa7 draft

Uploaded
author florianbegusch
date Thu, 24 May 2018 02:11:44 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:09b7bcb72fa7
1 <?xml version="1.0" ?>
2 <tool id="qiime_demux_summarize" name="qiime demux summarize" version="2018.4">
3 <description> - Summarize counts per sample.</description>
4 <requirements>
5 <requirement type="package" version="2018.4">qiime2</requirement>
6 </requirements>
7 <command><![CDATA[
8 qiime demux summarize --i-data=$idata
9
10 #if str($cmdconfig) != 'None':
11 --cmd-config=$cmdconfig
12 #end if
13
14 #if $pn:
15 --p-n=$pn
16 #end if
17
18 --o-visualization=ovisualization;
19 qiime tools export ovisualization.qzv --output-dir out && mkdir -p '$ovisualization.files_path'
20 && cp -r out/* '$ovisualization.files_path'
21 && mv '$ovisualization.files_path/index.html' '$ovisualization';
22 ]]></command>
23 <inputs>
24 <param format="qza,no_unzip.zip" label="--i-data: SampleData[JoinedSequencesWithQuality | PairedEndSequencesWithQuality | SequencesWithQuality] The demultiplexed sequences to be summarized. [required]" name="idata" optional="False" type="data"/>
25 <param label="--p-n: The number of sequences that should be selected at random for quality score plots. The quality plots will present the average positional qualities across all of the sequences selected. If input sequences are paired end, plots will be generated for both forward and reverse reads for the same \`n\` sequences. [default: 10000]" name="pn" optional="True" type="integer" value="10000"/>
26
27 <param label="--cmd-config: Use config file for command options" name="cmdconfig" optional="True" type="data"/>
28 </inputs>
29 <outputs>
30 <data format="html" label="${tool.name} on ${on_string}: visualization.qzv" name="ovisualization"/>
31 </outputs>
32 <help><![CDATA[
33 Summarize counts per sample.
34 -----------------------------
35
36 Summarize counts per sample for all samples, and generate interactive
37 positional quality plots based on \`n\` randomly selected sequences.
38
39 Parameters
40 ----------
41 data : SampleData[JoinedSequencesWithQuality | PairedEndSequencesWithQuality | SequencesWithQuality]
42 The demultiplexed sequences to be summarized.
43 n : Int, optional
44 The number of sequences that should be selected at random for quality
45 score plots. The quality plots will present the average positional
46 qualities across all of the sequences selected. If input sequences are
47 paired end, plots will be generated for both forward and reverse reads
48 for the same \`n\` sequences.
49
50 Returns
51 -------
52 visualization : Visualization
53 \
54 ]]>
55 </help>
56 </tool>