0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_demux_emp-single" name="qiime demux emp-single" version="2019.4">
|
|
3 <description> - Demultiplex sequence data generated with the EMP protocol.</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2019.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime demux emp-single
|
|
9
|
|
10 --i-seqs=$iseqs
|
|
11 --m-barcodes-column="$mbarcodescolumn"
|
|
12
|
|
13
|
2
|
14 #if $input_files_mbarcodesfile:
|
0
|
15 #def list_dict_to_string(list_dict):
|
|
16 #set $file_list = list_dict[0]['additional_input'].__getattr__('file_name')
|
|
17 #for d in list_dict[1:]:
|
|
18 #set $file_list = $file_list + ',' + d['additional_input'].__getattr__('file_name')
|
|
19 #end for
|
|
20 #return $file_list
|
|
21 #end def
|
|
22 --m-barcodes-file=$list_dict_to_string($input_files_mbarcodesfile)
|
2
|
23 #end if
|
0
|
24
|
|
25
|
|
26 #if $pnogolayerrorcorrection:
|
|
27 --p-no-golay-error-correction
|
|
28 #end if
|
|
29
|
|
30 #if $prevcompbarcodes:
|
|
31 --p-rev-comp-barcodes
|
|
32 #end if
|
|
33
|
|
34 #if $prevcompmappingbarcodes:
|
|
35 --p-rev-comp-mapping-barcodes
|
|
36 #end if
|
|
37
|
|
38 --o-per-sample-sequences=opersamplesequences
|
|
39 --o-error-correction-details=oerrorcorrectiondetails
|
|
40 ;
|
|
41 cp opersamplesequences.qza $opersamplesequences;
|
|
42 cp oerrorcorrectiondetails.qza $oerrorcorrectiondetails
|
|
43 ]]></command>
|
|
44 <inputs>
|
4
|
45 <repeat name="input_files_mbarcodesfile" optional="True" title="--m-barcodes-file [optional]">
|
|
46 <param label="--m-barcodes-file: Metadata file or artifact viewable as metadata. This option may be supplied multiple times to merge metadata. [optional]" name="additional_input" type="data" format="tabular,qza,no_unzip.zip"/>
|
0
|
47 </repeat>
|
|
48
|
|
49 <param format="qza,no_unzip.zip" label="--i-seqs: ARTIFACT RawSequences | EMPSingleEndSequences | EMPPairedEndSequences The single-end sequences to be demultiplexed. [required]" name="iseqs" optional="False" type="data"/>
|
|
50 <param label="--m-barcodes-column: COLUMN MetadataColumn[Categorical] The sample metadata column containing the per-sample barcodes. [required]" name="mbarcodescolumn" optional="False" type="text"/>
|
|
51 <param label="--p-no-golay-error-correction: Do not perform 12nt Golay error correction on the barcode reads. [default: False]" name="pnogolayerrorcorrection" selected="False" type="boolean"/>
|
|
52 <param label="--p-rev-comp-barcodes: --p-no-rev-comp-barcodes If provided, the barcode sequence reads will be reverse complemented prior to demultiplexing. [default: False]" name="prevcompbarcodes" selected="False" type="boolean"/>
|
|
53 <param label="--p-rev-comp-mapping-barcodes: --p-no-rev-comp-mapping-barcodes If provided, the barcode sequences in the sample metadata will be reverse complemented prior to demultiplexing. [default: False]" name="prevcompmappingbarcodes" selected="False" type="boolean"/>
|
|
54 </inputs>
|
|
55 <outputs>
|
|
56 <data format="qza" label="${tool.name} on ${on_string}: persamplesequences.qza" name="opersamplesequences"/>
|
|
57 <data format="qza" label="${tool.name} on ${on_string}: errorcorrectiondetails.qza" name="oerrorcorrectiondetails"/>
|
|
58 </outputs>
|
|
59 <help><![CDATA[
|
|
60 Demultiplex sequence data generated with the EMP protocol.
|
|
61 ##########################################################
|
|
62
|
|
63 Demultiplex sequence data (i.e., map barcode reads to sample ids) for data
|
|
64 generated with the Earth Microbiome Project (EMP) amplicon sequencing
|
|
65 protocol. Details about this protocol can be found at
|
|
66 http://www.earthmicrobiome.org/protocols-and-standards/
|
|
67
|
|
68 Parameters
|
|
69 ----------
|
|
70 seqs : RawSequences | EMPSingleEndSequences | EMPPairedEndSequences
|
|
71 The single-end sequences to be demultiplexed.
|
|
72 barcodes : MetadataColumn[Categorical]
|
|
73 The sample metadata column containing the per-sample barcodes.
|
|
74 golay_error_correction : Bool, optional
|
|
75 Perform 12nt Golay error correction on the barcode reads.
|
|
76 rev_comp_barcodes : Bool, optional
|
|
77 If provided, the barcode sequence reads will be reverse complemented
|
|
78 prior to demultiplexing.
|
|
79 rev_comp_mapping_barcodes : Bool, optional
|
|
80 If provided, the barcode sequences in the sample metadata will be
|
|
81 reverse complemented prior to demultiplexing.
|
|
82
|
|
83 Returns
|
|
84 -------
|
|
85 per_sample_sequences : SampleData[SequencesWithQuality]
|
|
86 The resulting demultiplexed sequences.
|
|
87 error_correction_details : ErrorCorrectionDetails
|
|
88 Detail about the barcode error corrections.
|
|
89 ]]></help>
|
|
90 <macros>
|
|
91 <import>qiime_citation.xml</import>
|
|
92 </macros>
|
|
93 <expand macro="qiime_citation"/>
|
|
94 </tool>
|