comparison tools/data_source/upload.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9071e359b9a3
1 <?xml version="1.0"?>
2
3 <tool name="Upload File" id="upload1" version="1.1.3">
4 <description>
5 from your computer
6 </description>
7 <action module="galaxy.tools.actions.upload" class="UploadToolAction"/>
8 <command interpreter="python">
9 upload.py $GALAXY_ROOT_DIR $GALAXY_DATATYPES_CONF_FILE $paramfile
10 #set $outnum = 0
11 #while $varExists('output%i' % $outnum):
12 #set $output = $getVar('output%i' % $outnum)
13 #set $outnum += 1
14 #set $file_name = $output.file_name
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)
16 #if $output.dataset.dataset.external_filename:
17 #set $file_name = "None"
18 #end if
19 ${output.dataset.dataset.id}:${output.files_path}:${file_name}
20 #end while
21 </command>
22 <inputs nginx_upload="true">
23 <param name="file_type" type="select" label="File Format" help="Which format? See help below">
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 ]">
25 <column name="value" index="1"/>
26 <column name="name" index="0"/>
27 <filter type="sort_by" column="0"/>
28 <filter type="add_value" name="Auto-detect" value="auto" index="0"/>
29 </options>
30 </param>
31 <param name="async_datasets" type="hidden" value="None"/>
32 <upload_dataset name="files" title="Specify Files for Dataset" file_type_name="file_type" metadata_ref="files_metadata">
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).">
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 -->
35 </param>
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."/>
37 <param name="ftp_files" type="ftpfile" label="Files uploaded via FTP"/>
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.">
39 <option value="Yes">Yes</option>
40 </param>
41 </upload_dataset>
42 <param name="dbkey" type="genomebuild" label="Genome" />
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" />
44 <!-- <param name="other_dbkey" type="text" label="Or user-defined Genome" /> -->
45 </inputs>
46 <help>
47
48 **Auto-detect**
49
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.
51
52 -----
53
54 **Ab1**
55
56 A binary sequence file in 'ab1' format with a '.ab1' file extension. You must manually select this 'File Format' when uploading the file.
57
58 -----
59
60 **Axt**
61
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.
63
64 -----
65
66 **Bam**
67
68 A binary file compressed in the BGZF format with a '.bam' file extension.
69
70 -----
71
72 **Bed**
73
74 * Tab delimited format (tabular)
75 * Does not require header line
76 * Contains 3 required fields:
77
78 - chrom - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).
79 - chromStart - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.
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.
81
82 * May contain 9 additional optional BED fields:
83
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.
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).
86 - strand - Defines the strand - either '+' or '-'.
87 - thickStart - The starting position at which the feature is drawn thickly (for example, the start codon in gene displays).
88 - thickEnd - The ending position at which the feature is drawn thickly (for example, the stop codon in gene displays).
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.
90 - blockCount - The number of blocks (exons) in the BED line.
91 - blockSizes - A comma-separated list of the block sizes. The number of items in this list should correspond to blockCount.
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.
93
94 * Example::
95
96 chr22 1000 5000 cloneA 960 + 1000 5000 0 2 567,488, 0,3512
97 chr22 2000 6000 cloneB 900 - 2000 6000 0 2 433,399, 0,3601
98
99 -----
100
101 **Fasta**
102
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::
104
105 >sequence1
106 atgcgtttgcgtgc
107 gtcggtttcgttgc
108 >sequence2
109 tttcgtgcgtatag
110 tggcgcggtga
111
112 -----
113
114 **FastqSolexa**
115
116 FastqSolexa is the Illumina (Solexa) variant of the Fastq format, which stores sequences and quality scores in a single file::
117
118 @seq1
119 GACAGCTTGGTTTTTAGTGAGTTGTTCCTTTCTTT
120 +seq1
121 hhhhhhhhhhhhhhhhhhhhhhhhhhPW@hhhhhh
122 @seq2
123 GCAATGACGGCAGCAATAAACTCAACAGGTGCTGG
124 +seq2
125 hhhhhhhhhhhhhhYhhahhhhWhAhFhSIJGChO
126
127 Or::
128
129 @seq1
130 GAATTGATCAGGACATAGGACAACTGTAGGCACCAT
131 +seq1
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
133 @seq2
134 GAGTTCTCGTCGCCTGTAGGCACCATCAATCGTATG
135 +seq2
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
137
138 -----
139
140 **Gff**
141
142 GFF lines have nine required fields that must be tab-separated.
143
144 -----
145
146 **Gff3**
147
148 The GFF3 format addresses the most common extensions to GFF, while preserving backward compatibility with previous formats.
149
150 -----
151
152 **Interval (Genomic Intervals)**
153
154 - Tab delimited format (tabular)
155 - File must start with definition line in the following format (columns may be in any order).::
156
157 #CHROM START END STRAND
158
159 - CHROM - The name of the chromosome (e.g. chr3, chrY, chr2_random) or contig (e.g. ctgY1).
160 - START - The starting position of the feature in the chromosome or contig. The first base in a chromosome is numbered 0.
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.
162 - STRAND - Defines the strand - either '+' or '-'.
163
164 - Example::
165
166 #CHROM START END STRAND NAME COMMENT
167 chr1 10 100 + exon myExon
168 chrX 1000 10050 - gene myGene
169
170 -----
171
172 **Lav**
173
174 Lav is the primary output format for BLASTZ. The first line of a .lav file begins with #:lav..
175
176 -----
177
178 **MAF**
179
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 "=".
181
182 -----
183
184 **Scf**
185
186 A binary sequence file in 'scf' format with a '.scf' file extension. You must manually select this 'File Format' when uploading the file.
187
188 -----
189
190 **Sff**
191
192 A binary file in 'Standard Flowgram Format' with a '.sff' file extension.
193
194 -----
195
196 **Tabular (tab delimited)**
197
198 Any data in tab delimited format (tabular)
199
200 -----
201
202 **Wig**
203
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.
205
206 -----
207
208 **Other text type**
209
210 Any text file
211
212 </help>
213 </tool>