0
|
1 <tool id="validate_affy_metadata" name="Validate Affymetrix metadata" version="1.0.0">
|
|
2 <description>for 96 well plate</description>
|
|
3 <command detect_errors="exit_code"><![CDATA[
|
|
4 python '$__tool_directory__/validate_affy_metadata.py'
|
|
5 --input '$input'
|
|
6 --output '$output']]></command>
|
|
7 <inputs>
|
|
8 <param name="input" type="data" format="csv" label="Affymetrix 96 well plate metadata file">
|
10
|
9 <validator type="expression" message="96 well plate data must have 29 columns and no more than 96 lines of data"><![CDATA[value is not None and value.metadata.columns==29 and value.metadata.data_lines<=96]]></validator>
|
0
|
10 </param>
|
|
11 </inputs>
|
|
12 <outputs>
|
|
13 <data name="output" format="csv"/>
|
|
14 </outputs>
|
|
15 <tests>
|
|
16 <test>
|
|
17 <param name="input" value="affy_metadata.csv" ftype="csv"/>
|
|
18 <output name="output" file="affy_metadata.csv" ftype="csv"/>
|
|
19 </test>
|
|
20 </tests>
|
|
21 <help>
|
|
22 **What it does**
|
|
23
|
15
|
24 Validates an Affymetrix metadata file for 96 well plate data. These files consist of 29 columns and no more than 96 data lines.
|
0
|
25 The tool will output the input file if it is valid.
|
15
|
26
|
0
|
27 -----
|
|
28
|
15
|
29 **Columns**
|
|
30
|
16
|
31 * date_entered_db
|
|
32 * user_specimen_id
|
|
33 * field_call
|
|
34 * bcoral_genet_id
|
|
35 * bsym_genet_id
|
|
36 * reef
|
|
37 * region
|
|
38 * latitude
|
|
39 * longitude
|
|
40 * geographic_origin
|
|
41 * sample_location
|
|
42 * latitude_outplant
|
|
43 * longitude_outplant
|
|
44 * depth
|
|
45 * dist_shore
|
|
46 * disease_resist
|
|
47 * bleach_resist
|
|
48 * mortality
|
|
49 * tle
|
|
50 * spawning
|
|
51 * collector_last_name
|
|
52 * collector_first_name
|
|
53 * org
|
|
54 * collection_date
|
|
55 * contact_email
|
|
56 * seq_facility
|
|
57 * array_version
|
|
58 * public
|
|
59 * public_after_date
|
0
|
60 </help>
|
|
61 <citations>
|
|
62 </citations>
|
|
63 </tool>
|