source: trunk/net/sf/basedb/illumina/config/illumina-raw-data-types.xml @ 572

Last change on this file since 572 was 572, checked in by Martin Svensson, 16 years ago

References #89 Change names, ids and variables according to README

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 1.1 KB
Line 
1<?xml version="1.0" ?>
2<!DOCTYPE raw-data-types SYSTEM "raw-data-types.dtd" >
3<!--
4  Definition for raw data types needed by the Illumina plug-ins.
5  Place this file in the WEB-INF/classes/raw-data-types directory.
6  For detailed installation instructions see the README file.
7-->
8<raw-data-types>
9  <raw-data-type
10    id="illumina_bead_summary"
11    channels="1"
12    name="Illumina Bead Summary (IBS)"
13    table="IlluminaBeadSummary"
14    >
15    <property
16      name="n"
17      title="N"
18      description="Number of beads"
19      column="n"
20      type="int"
21      averagemethod="none"
22    />
23    <property
24      name="mean"
25      title="Mean GRN"
26      description="Mean bead intensity"
27      column="mean"
28      type="float"
29      averagemethod="arithmetic_mean"
30    />
31    <property
32      name="dev"
33      title="Dev GRN"
34      description="Standard deviation of intensities"
35      column="dev"
36      type="float"
37      averagemethod="none"
38    />
39    <intensity-formula
40      name="mean"
41      title="Mean signal"
42      description="Mean bead intensity."
43      >
44      <formula 
45        channel="1"
46        expression="raw('mean')"
47      />
48    </intensity-formula>
49  </raw-data-type>
50</raw-data-types>
51
Note: See TracBrowser for help on using the repository browser.