annotate macros.xml @ 1:da90c37031bb draft default tip

Uploaded
author brenninc
date Tue, 21 Jun 2016 03:37:10 -0400
parents 40c86e14b674
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
1 <?xml version="1.0"?>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
2 <macros>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
3 <xml name="requirements">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
4 <requirements>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
5 <requirement type="package" version="2.31">tagdust</requirement>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
6 </requirements>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
7 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
8 <xml name="version_command">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
9 <version_command>tagdust --version | head -n 1 | awk '{ print $2 }'</version_command>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
10 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
11 <xml name="stdio">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
12 <stdio>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
13 <exit_code range="1:" level="fatal" description="Error" />
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
14 </stdio>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
15 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
16 <token name="@cat-archiecture@">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
17 echo using architecture ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
18 cat $architecture.fields.path ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
19 echo ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
20 </token>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
21 <token name="@tagdust-call-minus-files@">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
22 mkdir output ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
23 tagdust -t\${GALAXY_SLOTS:-4} -o output/data
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
24 -arch $architecture.fields.path
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
25 #if $reference_source.reference_source_selector=='history':
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
26 -ref $reference_source.ref_file
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
27 #end if
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
28 #if $reference_source.reference_source_selector=='cached':
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
29 -ref $reference_source.ref_path.fields.path
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
30 #end if
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
31 </token>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
32 <token name="@ls_and_barcode@">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
33 echo files in output folder ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
34 ls -al output ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
35 #if $include.barcode_files=="yes"
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
36 #if $architecture.fields.barcode=="yes"
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
37 cd output ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
38 ls *_BC_* > $barcode_files
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
39 #else
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
40 echo Selected architecture not expected to generate any barcode files > $barcode_files ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
41 echo To avoid this output set Choose to find the barcode files to No >> $barcode_files ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
42 #end if
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
43 #else
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
44 #if $architecture.fields.barcode=="yes"
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
45 echo ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
46 echo Tagdust not included in output at users request! ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
47 echo To get then set Choose to find the barcode files to Yes and run the tool again ;
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
48 #end if
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
49 #end if
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
50 </token>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
51 <xml name="architecture">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
52 <param name="architecture" type="select" label="Using architecture">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
53 <options from_data_table="tagdust_architecture"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
54 <validator type="no_options" message="No architecture found"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
55 <!--filter name="barcode" value="yes" column="3"/-->
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
56 </param>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
57 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
58 <xml name="reference_source">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
59 <conditional name="reference_source">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
60 <param name="reference_source_selector" type="select" label="Choose the source for the reference fasta (If any)">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
61 <option value="none" selected="true">Do not include a reference fasta</option>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
62 <option value="cached">Locally cached</option>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
63 <option value="history">History</option>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
64 </param>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
65 <when value="none"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
66 <when value="cached">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
67 <param name="ref_path" type="select" label="Using reference fasta">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
68 <options from_data_table="all_fasta"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
69 <validator type="no_options" message="A built-in reference fasta is not available for the build associated with the selected input file"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
70 </param>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
71 </when>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
72 <when value="history">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
73 <param name="ref_file" type="data" format="fasta" label="Using reference file" />
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
74 </when>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
75 </conditional>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
76 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
77 <xml name="include_barcode_file">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
78 <conditional name="include">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
79 <param name="barcode_files" type="select" label="Choose to find the barcode files (If any)">
1
da90c37031bb Uploaded
brenninc
parents: 0
diff changeset
80 <option value="no" selected="true">No. Ignores all barcode files even if these are generated.</option>
da90c37031bb Uploaded
brenninc
parents: 0
diff changeset
81 <option value="yes">Yes. Look for possible barcode separated files.</option>
0
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
82 </param>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
83 <when value="yes"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
84 <when value="no"/>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
85 </conditional>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
86 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
87 <xml name="output_barcode">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
88 <data format="txt" name="barcode_files" label="Tagdust barcoded reads.">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
89 <discover_datasets pattern="data_BC_(?P&lt;designation&gt;.+)\.fq" ext="fastq" directory="output" visible="true" />
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
90 <filter>(include['barcode_files']=='yes')</filter>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
91 </data>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
92 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
93 <token name="@tool-documentation@">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
94 <![CDATA[
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
95
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
96 Note: Output from Architecture with could have a Barcode HMM building block choose to find the barcode files.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
97 ....If no barcode files are found this will simply be empty.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
98 ....You may have refresh the history for all barcode files to show.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
99
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
100 Please contact the admin to add an architecture / HMM building blocks.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
101 (There is Data Manager that they can use)
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
102
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
103 ]]>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
104 </token>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
105 <token name="@tagdust-documentation@">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
106 <![CDATA[
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
107 ====
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
108
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
109 Taken from The TagDust2 Manual http://tagdust.sourceforge.net (part of Version 2_31 download)
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
110
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
111 Raw sequences produced by next generation sequencing (NGS) machines can contain adapter, linker,
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
112 barcode and fingerprint sequences. TagDust2 is a program to extract and correctly label the sequences
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
113 to be mapped in downstream pipelines.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
114 TagDust allows users to specify the expected architecture of a read and converts it into a hidden
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
115 Markov model. The latter can assign sequences to a particular barcode (or index) even in the presence
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
116 of sequencing errors. Sequences not matching the architecture (primer dimers, contaminants etc.) are
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
117 automatically discarded
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
118
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
119 TagDust requires an input file containing sequences and a user defined HMM architecture used to ex-
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
120 tract the reads. The architecture is composed of a selection of pre-defined building blocks representing
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
121 indices, barcodes, spacers and other sequences one might encounter in the raw output of a sequenced
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
122 sample.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
123
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
124 HMM Building Blocks
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
125
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
126 TagDust comes with a set of pre-defined HMM building blocks. Each includes a silent state at the
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
127 beginning and end used to link blocks together. Each block is specified by a unique letter following
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
128 by a colon and some information about the sequence.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
129
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
130 Read
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
131 Segment modeling the read.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
132 Code: R:N
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
133
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
134 Optional
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
135 Segment modeling an optional single or short stretch of nucleotides.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
136 Code: O:N
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
137
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
138 G addition
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
139 Segment modeling the occasional addition of guanines to the reads.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
140 (89.3% chance of a single G , 19.5% chance of 2 Gs..).
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
141 Code: G:G
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
142
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
143 Barcode or Index
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
144 Segment modeling a set of barcode sequences. For each sequence a separate HMM is created. The
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
145 barcode sequences must be given as a comma separated list. A null model of the same length as the
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
146 barcode is automatically added and initialized to the background nucleotide frequencies.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
147 Code: B:GTA,AAC
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
148
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
149 Fingerprint or Unique Molecular Identifier - UMI
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
150 Segment modeling a fingerprint (or unique molecular identifiers). Insertions and deletions are by
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
151 default not allowed within a fingerprint segment.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
152 Code: F:NNN
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
153
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
154 Spacer
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
155 Segment modeling a pre-defined sequence.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
156 Code: S:GTA
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
157
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
158 Partial
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
159 This segment is used to model sequences that may only be partially present at the 5‘ or 3‘ end of
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
160 the read. The transition probabilities (orange and blue) are set automatically based on the length
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
161 distribution of exactly matching adapters.
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
162 Code: P:CCTTAA
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
163 ]]>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
164 </token>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
165 <xml name="citations">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
166 <citations>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
167 <citation type="bibtex">
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
168 @misc{
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
169 TagDust,
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
170 author = {Timo Lassmann},
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
171 title = {TagDust on sourceforge},
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
172 url = {http://tagdust.sourceforge.net/}
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
173 }
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
174 </citation>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
175 <citation type="doi">10.1093/bioinformatics/btp527</citation>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
176 <citation type="doi">10.1186/s12859-015-0454-y</citation>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
177 </citations>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
178 </xml>
40c86e14b674 Uploaded first version of tagdust
brenninc
parents:
diff changeset
179 </macros>