annotate tools/data_source/upload.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <?xml version="1.0"?>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <tool name="Upload File" id="upload1" version="1.1.3">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 from your computer
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 </description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <action module="galaxy.tools.actions.upload" class="UploadToolAction"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 upload.py $GALAXY_ROOT_DIR $GALAXY_DATATYPES_CONF_FILE $paramfile
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 #set $outnum = 0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 #while $varExists('output%i' % $outnum):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 #set $output = $getVar('output%i' % $outnum)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 #set $outnum += 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 #set $file_name = $output.file_name
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 ## FIXME: This is not future-proof for other uses of external_filename (other than for use by the library upload's "link data" feature)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 #if $output.dataset.dataset.external_filename:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 #set $file_name = "None"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 ${output.dataset.dataset.id}:${output.files_path}:${file_name}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 #end while
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <inputs nginx_upload="true">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <param name="file_type" type="select" label="File Format" help="Which format? See help below">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <options from_parameter="tool.app.datatypes_registry.upload_file_formats" transform_lines="[ &quot;%s%s%s&quot; % ( line, self.separator, line ) for line in obj ]">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <column name="value" index="1"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 <column name="name" index="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <filter type="sort_by" column="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <filter type="add_value" name="Auto-detect" value="auto" index="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 </options>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <param name="async_datasets" type="hidden" value="None"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 <upload_dataset name="files" title="Specify Files for Dataset" file_type_name="file_type" metadata_ref="files_metadata">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <param name="file_data" type="file" size="30" label="File" ajax-upload="true" help="TIP: Due to browser limitations, uploading files larger than 2GB is guaranteed to fail. To upload large files, use the URL method (below) or FTP (if enabled by the site administrator).">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <validator type="expression" message="You will need to reselect the file you specified (%s)." substitute_value_in_message="True">not ( ( isinstance( value, unicode ) or isinstance( value, str ) ) and value != "" )</validator> <!-- use validator to post message to user about needing to reselect the file, since most browsers won't accept the value attribute for file inputs -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 <param name="url_paste" type="text" area="true" size="5x35" label="URL/Text" help="Here you may specify a list of URLs (one per line) or paste the contents of a file."/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 <param name="ftp_files" type="ftpfile" label="Files uploaded via FTP"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 <param name="space_to_tab" type="select" display="checkboxes" multiple="True" label="Convert spaces to tabs" help="Use this option if you are entering intervals by hand.">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 <option value="Yes">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 </upload_dataset>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <param name="dbkey" type="genomebuild" label="Genome" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <conditional name="files_metadata" title="Specify metadata" value_from="self:app.datatypes_registry.get_upload_metadata_params" value_ref="file_type" value_ref_in_group="False" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <!-- <param name="other_dbkey" type="text" label="Or user-defined Genome" /> -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 **Auto-detect**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 The system will attempt to detect Axt, Fasta, Fastqsolexa, Gff, Gff3, Html, Lav, Maf, Tabular, Wiggle, Bed and Interval (Bed with headers) formats. If your file is not detected properly as one of the known formats, it most likely means that it has some format problems (e.g., different number of columns on different rows). You can still coerce the system to set your data to the format you think it should be. You can also upload compressed files, which will automatically be decompressed.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 **Ab1**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 A binary sequence file in 'ab1' format with a '.ab1' file extension. You must manually select this 'File Format' when uploading the file.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 **Axt**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 blastz pairwise alignment format. Each alignment block in an axt file contains three lines: a summary line and 2 sequence lines. Blocks are separated from one another by blank lines. The summary line contains chromosomal position and size information about the alignment. It consists of 9 required fields.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 **Bam**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 A binary file compressed in the BGZF format with a '.bam' file extension.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 **Bed**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 * Tab delimited format (tabular)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 * Does not require header line
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 * Contains 3 required fields:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 - chrom - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 - chromStart - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 - chromEnd - The ending position of the feature in the chromosome or contig. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 * May contain 9 additional optional BED fields:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 - name - Defines the name of the BED line. This label is displayed to the left of the BED line in the Genome Browser window when the track is open to full display mode or directly to the left of the item in pack mode.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 - score - A score between 0 and 1000. If the track line useScore attribute is set to 1 for this annotation data set, the score value will determine the level of gray in which this feature is displayed (higher numbers = darker gray).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 - strand - Defines the strand - either '+' or '-'.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 - thickStart - The starting position at which the feature is drawn thickly (for example, the start codon in gene displays).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 - thickEnd - The ending position at which the feature is drawn thickly (for example, the stop codon in gene displays).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 - itemRgb - An RGB value of the form R,G,B (e.g. 255,0,0). If the track line itemRgb attribute is set to "On", this RBG value will determine the display color of the data contained in this BED line. NOTE: It is recommended that a simple color scheme (eight colors or less) be used with this attribute to avoid overwhelming the color resources of the Genome Browser and your Internet browser.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 - blockCount - The number of blocks (exons) in the BED line.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 - blockSizes - A comma-separated list of the block sizes. The number of items in this list should correspond to blockCount.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 - blockStarts - A comma-separated list of block starts. All of the blockStart positions should be calculated relative to chromStart. The number of items in this list should correspond to blockCount.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 * Example::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 chr22 1000 5000 cloneA 960 + 1000 5000 0 2 567,488, 0,3512
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 chr22 2000 6000 cloneB 900 - 2000 6000 0 2 433,399, 0,3601
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 **Fasta**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 A sequence in FASTA format consists of a single-line description, followed by lines of sequence data. The first character of the description line is a greater-than (">") symbol in the first column. All lines should be shorter than 80 characters::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 >sequence1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 atgcgtttgcgtgc
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 gtcggtttcgttgc
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 >sequence2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 tttcgtgcgtatag
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 tggcgcggtga
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 **FastqSolexa**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 FastqSolexa is the Illumina (Solexa) variant of the Fastq format, which stores sequences and quality scores in a single file::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 @seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 GACAGCTTGGTTTTTAGTGAGTTGTTCCTTTCTTT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 +seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 hhhhhhhhhhhhhhhhhhhhhhhhhhPW@hhhhhh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 @seq2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 GCAATGACGGCAGCAATAAACTCAACAGGTGCTGG
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 +seq2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 hhhhhhhhhhhhhhYhhahhhhWhAhFhSIJGChO
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 Or::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 @seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 GAATTGATCAGGACATAGGACAACTGTAGGCACCAT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131 +seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 40 40 40 40 35 40 40 40 25 40 40 26 40 9 33 11 40 35 17 40 40 33 40 7 9 15 3 22 15 30 11 17 9 4 9 4
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 @seq2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 GAGTTCTCGTCGCCTGTAGGCACCATCAATCGTATG
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 +seq2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 40 15 40 17 6 36 40 40 40 25 40 9 35 33 40 14 14 18 15 17 19 28 31 4 24 18 27 14 15 18 2 8 12 8 11 9
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 **Gff**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 GFF lines have nine required fields that must be tab-separated.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 **Gff3**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 The GFF3 format addresses the most common extensions to GFF, while preserving backward compatibility with previous formats.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 **Interval (Genomic Intervals)**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 - Tab delimited format (tabular)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 - File must start with definition line in the following format (columns may be in any order).::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 #CHROM START END STRAND
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 - CHROM - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160 - START - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 - END - The ending position of the feature in the chromosome or contig. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162 - STRAND - Defines the strand - either '+' or '-'.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164 - Example::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 #CHROM START END STRAND NAME COMMENT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 chr1 10 100 + exon myExon
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 chrX 1000 10050 - gene myGene
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 **Lav**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 Lav is the primary output format for BLASTZ. The first line of a .lav file begins with #:lav..
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 **MAF**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180 TBA and multiz multiple alignment format. The first line of a .maf file begins with ##maf. This word is followed by white-space-separated "variable=value" pairs. There should be no white space surrounding the "=".
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184 **Scf**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 A binary sequence file in 'scf' format with a '.scf' file extension. You must manually select this 'File Format' when uploading the file.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190 **Sff**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 A binary file in 'Standard Flowgram Format' with a '.sff' file extension.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 **Tabular (tab delimited)**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 Any data in tab delimited format (tabular)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202 **Wig**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204 The wiggle format is line-oriented. Wiggle data is preceded by a track definition line, which adds a number of options for controlling the default display of this track.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208 **Other text type**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 Any text file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213 </tool>