annotate rgGSEAcolumns.xml @ 0:aef0ecc00683 draft

initial commit
author fubar
date Sun, 09 Jun 2013 01:30:20 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
aef0ecc00683 initial commit
fubar
parents:
diff changeset
1 <tool id="rgGSEAcolumns" name="Gene set enrichment" version="0.05">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
2 <description>using a generic tabular file</description>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
3 <requirements>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
4 <requirement type="package" version="2.0.12">gsea</requirement>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
5 <requirement type="set_environment">GSEAJAR_PATH</requirement>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
6 </requirements>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
7 <command interpreter="python">rgGSEA.py --input_tab "$input1" --adjpvalcol "$adjpvalcol" --signcol "$signcol"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
8 --idcol "$idcol" --outhtml "$html_file" --input_name "${input1.name}"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
9 --setMax "$setMax" --setMin "$setMin" --nPerm "$nPerm" --plotTop "$plotTop"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
10 --gsea_jar "\$GSEAJAR_PATH"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
11 --output_dir "$html_file.files_path" --mode "$mode" --title "$title"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
12 #if $makeTab.value=='Yes'
aef0ecc00683 initial commit
fubar
parents:
diff changeset
13 --outtab_pos "$outtab_pos" --outtab_neg "$outtab_neg"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
14 #end if
aef0ecc00683 initial commit
fubar
parents:
diff changeset
15 #if $gmtSource.refgmtSource == "indexed" or $gmtSource.refgmtSource == "both":
aef0ecc00683 initial commit
fubar
parents:
diff changeset
16 --builtin_gmt "${gmtSource.builtinGMT.fields.path}"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
17 #end if
aef0ecc00683 initial commit
fubar
parents:
diff changeset
18 #if $gmtSource.refgmtSource == "history" or $gmtSource.refgmtSource == "both":
aef0ecc00683 initial commit
fubar
parents:
diff changeset
19 --history_gmt "${gmtSource.ownGMT}" --history_gmt_name "${gmtSource.ownGMT.name}"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
20 #end if
aef0ecc00683 initial commit
fubar
parents:
diff changeset
21 #if $checkchip.convertchip=="yes"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
22 --chip "${checkchip.use_chip.fields.path}"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
23 #end if
aef0ecc00683 initial commit
fubar
parents:
diff changeset
24 </command>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
25 <inputs>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
26 <param name="input1" type="data" format="tabular" label="Select a tab delimited file with a probe id, adjusted p value and a signed weight (eg t-test statistic) on each row"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
27 help=""/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
28 <param name="adjpvalcol" label="Column containing a p value for the DEG statistical test"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
29 help = "Use RAW p-values - not FDR adjusted as these have a non GSEA friendly non-uniform distribution"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
30 type="data_column" data_ref="input1" numerical="True"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
31 multiple="false" use_header_names="true" size="5">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
32 <validator type="no_options" message="Please select a p value column."/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
33 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
34 <param name="signcol" label="Column containing the DE sign - eg log fold change so positive/negative values = upregulated/downregulated in treatment"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
35 type="data_column" data_ref="input1" numerical="True"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
36 multiple="false" use_header_names="true" size="5">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
37 <validator type="no_options" message="Please select a sign column."/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
38 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
39 <param name="idcol" label="Column containing a gene id (refseq, symbol or Entrez"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
40 type="data_column" data_ref="input1" numerical="False"
aef0ecc00683 initial commit
fubar
parents:
diff changeset
41 multiple="false" use_header_names="true" size="5">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
42 <validator type="no_options" message="Please select an id column."/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
43 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
44
aef0ecc00683 initial commit
fubar
parents:
diff changeset
45 <param name="title" type="text" value="GSEA" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
46 <param name="setMin" type="integer" label="Minimum gene set size to prune (default=15)" size="5" value="15"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
47 <param name="setMax" type="integer" label="Maximum gene set size to prune (default=500)" size="5" value="500"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
48 <param name="nPerm" type="integer" label="Number of permutations (default=1000)" size="7" value="1000"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
49 <param name="plotTop" type="integer" label="Number of top gene sets to plot and present in detailed reports(default=20)" size="10" value="20"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
50 <param name="mode" type="select" label="Mode for dealing with duplicated gene ids" >
aef0ecc00683 initial commit
fubar
parents:
diff changeset
51 <option value="Max_probe" selected="true">Use the most extreme value</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
52 <option value="Median_of_probes">Use the median of all supplied values</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
53 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
54 <param name="makeTab" type="select" label="Create a tabular report containing ALL gene sets for downstream analysis" >
aef0ecc00683 initial commit
fubar
parents:
diff changeset
55 <option value="Yes">Yes</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
56 <option value="No" selected="true">No</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
57 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
58 <conditional name="checkchip" >
aef0ecc00683 initial commit
fubar
parents:
diff changeset
59 <param name="convertchip" type="select" label="Translate the rank file IDs (first column) using a GSEA 'chip' lookup table">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
60 <option value="yes">Use a GSEA 'chip' file</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
61 <option value="no" selected="true">IDs are already gene symbols - no translation needed </option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
62 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
63 <when value="no">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
64 </when>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
65 <when value="yes">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
66 <param name="use_chip" type="select" label="Select a GSEA 'chip' for the probe ids or symbols in the ranks file">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
67 <options from_data_table="gseaChip_3.1">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
68 <filter type="sort_by" column="2" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
69 <validator type="no_options" message="No chip tables are available - please see the Galaxy GSEA tool documentation for instructions on installing them" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
70 </options>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
71 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
72 </when>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
73 </conditional>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
74 <conditional name="gmtSource">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
75 <param name="refgmtSource" type="select" label="Use a gene set (.gmt) from your history or use a built-in (MSigDB etc) gene set">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
76 <option value="indexed" selected="true">Use a built-in gene set</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
77 <option value="history">Use a gene set from my history</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
78 <option value="both">Add a gene set from my history to a built in gene set</option>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
79 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
80 <when value="indexed">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
81 <param name="builtinGMT" type="select" label="Select a gene set matrix (.gmt) file to use for the analysis">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
82 <options from_data_table="gseaGMT_3.1">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
83 <filter type="sort_by" column="2" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
84 <validator type="no_options" message="No GMT v3.1 files are available - please install them"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
85 </options>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
86 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
87 </when>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
88 <when value="history">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
89 <param name="ownGMT" type="data" format="gmt" label="Select a Gene Set from your history" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
90 </when>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
91 <when value="both">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
92 <param name="ownGMT" type="data" format="gmt" label="Select a Gene Set from your history" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
93 <param name="builtinGMT" type="select" label="Select a gene set matrix (.gmt) file to use for the analysis">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
94 <options from_data_table="gseaGMT_3.1">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
95 <filter type="sort_by" column="2" />
aef0ecc00683 initial commit
fubar
parents:
diff changeset
96 <validator type="no_options" message="No GMT v3.1 files are available - please install them"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
97 </options>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
98 </param>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
99 </when>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
100 </conditional>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
101 </inputs>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
102 <outputs>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
103 <data format="html" name="html_file" label="${title}.html"/>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
104 <data format="tabular" name="outtab_pos" label="${title}_pos_allsets.xls">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
105 <filter>makeTab=="Yes"</filter>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
106 </data>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
107 <data format="tabular" name="outtab_neg" label="${title}_neg_allsets.xls">
aef0ecc00683 initial commit
fubar
parents:
diff changeset
108 <filter>makeTab=="Yes"</filter>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
109 </data>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
110
aef0ecc00683 initial commit
fubar
parents:
diff changeset
111 </outputs>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
112 <help>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
113 **What it does**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
114
aef0ecc00683 initial commit
fubar
parents:
diff changeset
115 Performs Gene set enrichment analysis using GSEA_ from the Broad as described in 2005Paper_ and v3.1 of msigdb
aef0ecc00683 initial commit
fubar
parents:
diff changeset
116
aef0ecc00683 initial commit
fubar
parents:
diff changeset
117 Refer to http://www.pnas.org/cgi/content/abstract/0506580102v1 for details of the method.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
118
aef0ecc00683 initial commit
fubar
parents:
diff changeset
119 **Input**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
120
aef0ecc00683 initial commit
fubar
parents:
diff changeset
121 A tabular file with a header row and some columns containing probe ids or gene names; a p value or t-test statistic reflecting the
aef0ecc00683 initial commit
fubar
parents:
diff changeset
122 strength and a signed quantity such as log fold change or a t-test statistic reflecting the direction of differential gene expression from edgeR for counts
aef0ecc00683 initial commit
fubar
parents:
diff changeset
123 or some other valid analysis.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
124 Probe names can be translated using the chip file option (see below)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
125 A filter has been added to remove NA and null id rows as these can't be used. A summary will appear in stdout in the page linked from the "i" (info) button for the output
aef0ecc00683 initial commit
fubar
parents:
diff changeset
126
aef0ecc00683 initial commit
fubar
parents:
diff changeset
127 **Gene sets**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
128
aef0ecc00683 initial commit
fubar
parents:
diff changeset
129 If you have your own gene sets as .gmt files (see GUIDE_ for details of format) upload them in your history and use them by nominating a history sourced gmt.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
130
aef0ecc00683 initial commit
fubar
parents:
diff changeset
131 Alternatively, use one of the built in MSigDB_ (molecular signatures database) sets.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
132 There may be additional locally provided sets such as starBase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
133
aef0ecc00683 initial commit
fubar
parents:
diff changeset
134 Optionally, a local gmt can be merged with a built in one if you want to see how they perform competitively
aef0ecc00683 initial commit
fubar
parents:
diff changeset
135
aef0ecc00683 initial commit
fubar
parents:
diff changeset
136 Select the most appropriate subset of MSigDB gene sets or use all by choosing msigdb.v3.0.symbols.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
137 A non-cancer subset called c2_c3_c5_all.v3.0.symbols is recommended if you are working with non-cancer biology.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
138
aef0ecc00683 initial commit
fubar
parents:
diff changeset
139
aef0ecc00683 initial commit
fubar
parents:
diff changeset
140 **Chip**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
141
aef0ecc00683 initial commit
fubar
parents:
diff changeset
142 If your input file contains HUGO gene symbols (TEK, SLC38A1...etc) then you do not need to specify a 'chip'.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
143
aef0ecc00683 initial commit
fubar
parents:
diff changeset
144 GSEA software allows you to specify a translation table from common microarray probe IDs to gene symbols - select the option to use a chip file and choose the one that matches your probe id's
aef0ecc00683 initial commit
fubar
parents:
diff changeset
145 Failure to match the translation correctly will generally result in failure of the job since none of your input data will be translated properly.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
146
aef0ecc00683 initial commit
fubar
parents:
diff changeset
147 **Output**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
148
aef0ecc00683 initial commit
fubar
parents:
diff changeset
149 A report as html - see the GUIDE_ for a guide on interpretation
aef0ecc00683 initial commit
fubar
parents:
diff changeset
150
aef0ecc00683 initial commit
fubar
parents:
diff changeset
151
aef0ecc00683 initial commit
fubar
parents:
diff changeset
152 **Attribution**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
153
aef0ecc00683 initial commit
fubar
parents:
diff changeset
154 This Galaxy tool wrapper was written by Ross Lazarus.
aef0ecc00683 initial commit
fubar
parents:
diff changeset
155 It executes the GSEA_ java application available using MSigDB and Chip files obtained from the GSEA_ web site
aef0ecc00683 initial commit
fubar
parents:
diff changeset
156
aef0ecc00683 initial commit
fubar
parents:
diff changeset
157
aef0ecc00683 initial commit
fubar
parents:
diff changeset
158 **Chip ID samples**
aef0ecc00683 initial commit
fubar
parents:
diff changeset
159
aef0ecc00683 initial commit
fubar
parents:
diff changeset
160 You may be able to look for probe ids in similar form to the ones you have in the list below to find the correct GSEA 'chip' file if you do not have HUGO gene symbols
aef0ecc00683 initial commit
fubar
parents:
diff changeset
161
aef0ecc00683 initial commit
fubar
parents:
diff changeset
162 ::
aef0ecc00683 initial commit
fubar
parents:
diff changeset
163
aef0ecc00683 initial commit
fubar
parents:
diff changeset
164 AG.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
165 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
166 11986_at --- calcium-dependent lipid-binding protein, putative
aef0ecc00683 initial commit
fubar
parents:
diff changeset
167 11987_at --- zinc finger (C3HC4-type RING finger) family protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
168 11988_at --- WD-40 repeat family protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
169
aef0ecc00683 initial commit
fubar
parents:
diff changeset
170 Agilent_Human1A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
171 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
172 A_23_P100001 LOC400451 hypothetical gene supported by AK075564; BC060873
aef0ecc00683 initial commit
fubar
parents:
diff changeset
173 A_23_P100011 AP3S2 adaptor-related protein complex 3, sigma 2 subunit
aef0ecc00683 initial commit
fubar
parents:
diff changeset
174 A_23_P10002 CEP63 centrosome protein Cep63
aef0ecc00683 initial commit
fubar
parents:
diff changeset
175
aef0ecc00683 initial commit
fubar
parents:
diff changeset
176 Agilent_Human1Av2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
177 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
178 A_23_P100001 LOC400451 hypothetical gene supported by AK075564; BC060873
aef0ecc00683 initial commit
fubar
parents:
diff changeset
179 A_23_P100011 AP3S2 adaptor-related protein complex 3, sigma 2 subunit
aef0ecc00683 initial commit
fubar
parents:
diff changeset
180 A_23_P10002 CEP63 centrosome protein Cep63
aef0ecc00683 initial commit
fubar
parents:
diff changeset
181
aef0ecc00683 initial commit
fubar
parents:
diff changeset
182 Agilent_Human1B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
183 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
184 A_32_P10002 TUBA2 tubulin, alpha 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
185 A_32_P100076 RPL19 ribosomal protein L19
aef0ecc00683 initial commit
fubar
parents:
diff changeset
186 A_32_P100100 THOC3 THO complex 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
187
aef0ecc00683 initial commit
fubar
parents:
diff changeset
188 Agilent_Human1_cDNA.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
189 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
190 1 RNASEH2A ribonuclease H2, large subunit
aef0ecc00683 initial commit
fubar
parents:
diff changeset
191 10 SF3B1 splicing factor 3b, subunit 1, 155kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
192 100 S100A16 S100 calcium binding protein A16
aef0ecc00683 initial commit
fubar
parents:
diff changeset
193
aef0ecc00683 initial commit
fubar
parents:
diff changeset
194 Agilent_HumanGenome.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
195 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
196 A_23_P100001 LOC400451 hypothetical gene supported by AK075564; BC060873
aef0ecc00683 initial commit
fubar
parents:
diff changeset
197 A_23_P100011 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
198 A_23_P100022 SV2B synaptic vesicle glycoprotein 2B
aef0ecc00683 initial commit
fubar
parents:
diff changeset
199
aef0ecc00683 initial commit
fubar
parents:
diff changeset
200 Agilent_Mouse_cDNA.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
201 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
202 1000982 SLC6A9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9
aef0ecc00683 initial commit
fubar
parents:
diff changeset
203 1001007 IGF1 insulin-like growth factor 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
204 1001011 FCNA ficolin A
aef0ecc00683 initial commit
fubar
parents:
diff changeset
205
aef0ecc00683 initial commit
fubar
parents:
diff changeset
206 Agilent_MouseDev.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
207 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
208 A_65_P00523 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
209 A_65_P00524 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
210 A_65_P00525 SFTPD surfactant associated protein D
aef0ecc00683 initial commit
fubar
parents:
diff changeset
211
aef0ecc00683 initial commit
fubar
parents:
diff changeset
212 Agilent_MouseGenome.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
213 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
214 A_51_P100021 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
215 A_51_P100034 2310075G12RIK RIKEN cDNA 2310075G12 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
216 A_51_P100052 SLITRK2 SLIT and NTRK-like family, member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
217
aef0ecc00683 initial commit
fubar
parents:
diff changeset
218 Agilent_MouseOligo.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
219 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
220 A_51_P100021 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
221 A_51_P100034 2310075G12RIK RIKEN cDNA 2310075G12 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
222 A_51_P100052 SLITRK2 SLIT and NTRK-like family, member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
223
aef0ecc00683 initial commit
fubar
parents:
diff changeset
224 Agilent_RatGenome_G4131A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
225 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
226 A_42_P453055 LU Lutheran blood group (Auberger b antigen included)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
227 A_42_P453737 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
228 A_42_P453894 RGD1306682_PREDICTED similar to RIKEN cDNA 1810046J19 (predicted)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
229
aef0ecc00683 initial commit
fubar
parents:
diff changeset
230 Agilent_RatOligo.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
231 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
232 A_42_P453131 CNTN1 contactin 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
233 A_42_P453151 TTC8_PREDICTED tetratricopeptide repeat domain 8 (predicted)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
234 A_42_P453162 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
235
aef0ecc00683 initial commit
fubar
parents:
diff changeset
236 APPLERA_ABI1700.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
237 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
238 100002 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
239 100003 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
240 100027 ZNF192 zinc finger protein 192
aef0ecc00683 initial commit
fubar
parents:
diff changeset
241
aef0ecc00683 initial commit
fubar
parents:
diff changeset
242 ATH1_121501.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
243 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
244 244901_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
245 244902_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
246 244903_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
247
aef0ecc00683 initial commit
fubar
parents:
diff changeset
248 AtlasMouse1.2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
249 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
250 MA099 HTR1A 5-hydroxytryptamine (serotonin) receptor 1A
aef0ecc00683 initial commit
fubar
parents:
diff changeset
251 MA015 JARID2 jumonji, AT rich interactive domain 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
252 M443 CDKN2C cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
253
aef0ecc00683 initial commit
fubar
parents:
diff changeset
254 AtlasRat1.2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
255 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
256 R484 TPP2 tripeptidylpeptidase II
aef0ecc00683 initial commit
fubar
parents:
diff changeset
257 RG348 MOS v-mos moloney murine sarcoma viral oncogene homolog
aef0ecc00683 initial commit
fubar
parents:
diff changeset
258 RG119 KCNJ1 potassium inwardly-rectifying channel, subfamily J, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
259
aef0ecc00683 initial commit
fubar
parents:
diff changeset
260 Bovine.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
261 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
262 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
263 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
264 AFFX-BioB-M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
265
aef0ecc00683 initial commit
fubar
parents:
diff changeset
266 Caltech16KMouse.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
267 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
268 6712 CCL6 chemokine (C-C motif) ligand 6
aef0ecc00683 initial commit
fubar
parents:
diff changeset
269 8563 ACTL7B actin-like 7b
aef0ecc00683 initial commit
fubar
parents:
diff changeset
270 8434 1700049M11RIK RIKEN cDNA 1700049M11 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
271
aef0ecc00683 initial commit
fubar
parents:
diff changeset
272 Caltech16KOligoMouse.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
273 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
274 6712 GCA grancalcin, EF-hand calcium binding protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
275 8563 MARVELD2 MARVEL (membrane-associating) domain containing 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
276 8434 BC048825 NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
277
aef0ecc00683 initial commit
fubar
parents:
diff changeset
278 Canine_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
279 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
280 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
281 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
282 AFFX-BioB-M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
283
aef0ecc00683 initial commit
fubar
parents:
diff changeset
284 Clontech_Atlas_13K.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
285 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
286 1-A01 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
287 1-A02 A2M alpha-2-macroglobulin
aef0ecc00683 initial commit
fubar
parents:
diff changeset
288 1-A03 AADAC arylacetamide deacetylase (esterase)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
289
aef0ecc00683 initial commit
fubar
parents:
diff changeset
290 Clontech_BD_Atlas.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
291 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
292 A01a PCP4 Purkinje cell protein 4
aef0ecc00683 initial commit
fubar
parents:
diff changeset
293 A01b NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
294 A01c PMP22 peripheral myelin protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
295
aef0ecc00683 initial commit
fubar
parents:
diff changeset
296 CNMCMuscleChip.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
297 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
298 HSPD4570_at MBP myelin basic protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
299 HSPD7328_at MAPK12 mitogen-activated protein kinase 12
aef0ecc00683 initial commit
fubar
parents:
diff changeset
300 HSPD17028_i_at DIA1 diaphorase (NADH) (cytochrome b-5 reductase)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
301
aef0ecc00683 initial commit
fubar
parents:
diff changeset
302 CodeLink_Human_Whole_Genome.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
303 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
304 GE469530 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
305 GE469548 TMEM1 transmembrane protein 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
306 GE469549 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
307
aef0ecc00683 initial commit
fubar
parents:
diff changeset
308 CodeLink_UniSet_Human_20K_I_Bioarray.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
309 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
310 000106CB1_PROBE1 NDUFA4 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
311 000136CB1_PROBE1 MRPS33 mitochondrial ribosomal protein S33
aef0ecc00683 initial commit
fubar
parents:
diff changeset
312 000278CB1_PROBE1 FDFT1 farnesyl-diphosphate farnesyltransferase 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
313
aef0ecc00683 initial commit
fubar
parents:
diff changeset
314 CodeLink_UniSet_Human_I_Bioarray.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
315 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
316 AA001334_PROBE1 ZHX2 zinc fingers and homeoboxes 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
317 AA002191_PROBE1 PITPNA phosphatidylinositol transfer protein, alpha
aef0ecc00683 initial commit
fubar
parents:
diff changeset
318 AA004381_PROBE1 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
319
aef0ecc00683 initial commit
fubar
parents:
diff changeset
320 CodeLink_UniSet_Human_II_Bioarray.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
321 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
322 000106CB1_PROBE1 NDUFA4 NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
323 000136CB1_PROBE1 MRPS33 mitochondrial ribosomal protein S33
aef0ecc00683 initial commit
fubar
parents:
diff changeset
324 000278CB1_PROBE1 FDFT1 farnesyl-diphosphate farnesyltransferase 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
325
aef0ecc00683 initial commit
fubar
parents:
diff changeset
326 CodeLink_UniSet_Rat_I_Bioarray.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
327 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
328 AA799301_PROBE1 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
329 AA799313_PROBE1 RGD:1303279 sialyltransferase 10 (alpha-2,3-sialyltransferase VI)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
330 AA799329_PROBE1 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
331
aef0ecc00683 initial commit
fubar
parents:
diff changeset
332 DrosGenome1.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
333 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
334 141200_at CG9418 CG9418
aef0ecc00683 initial commit
fubar
parents:
diff changeset
335 141201_at CG17840 CG17840
aef0ecc00683 initial commit
fubar
parents:
diff changeset
336 141202_at QKR58E-3 quaking related 58E-3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
337
aef0ecc00683 initial commit
fubar
parents:
diff changeset
338 Drosophila_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
339 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
340 1616608_a_at GPDH Glycerol 3 phosphate dehydrogenase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
341 1622892_s_at CG33057 /// MKG-P CG33057 /// monkey king protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
342 1622893_at IM3 /// RPS10B Immune induced molecule 3 /// Ribosomal protein S10b
aef0ecc00683 initial commit
fubar
parents:
diff changeset
343
aef0ecc00683 initial commit
fubar
parents:
diff changeset
344 G4110A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
345 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
346 A_23_P7033 MAGEF1 melanoma antigen, family F, 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
347 A_23_P170713 A_23_P170713 ***description missing***
aef0ecc00683 initial commit
fubar
parents:
diff changeset
348 A_23_P107801 FLJ21742 hypothetical protein FLJ21742
aef0ecc00683 initial commit
fubar
parents:
diff changeset
349
aef0ecc00683 initial commit
fubar
parents:
diff changeset
350 G4110Av2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
351 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
352 A_23_P7033 MAGEF1 melanoma antigen, family F, 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
353 A_23_P170713 A_23_P170713 No description available
aef0ecc00683 initial commit
fubar
parents:
diff changeset
354 A_23_P107801 FLJ21742 hypothetical protein FLJ21742
aef0ecc00683 initial commit
fubar
parents:
diff changeset
355
aef0ecc00683 initial commit
fubar
parents:
diff changeset
356 GENE_SYMBOL.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
357 Probe Set ID Gene Symbol Gene Title Aliases
aef0ecc00683 initial commit
fubar
parents:
diff changeset
358 A1BG A1BG alpha-1-B glycoprotein GABDKFZP686F0970ABGHYST2477A1B
aef0ecc00683 initial commit
fubar
parents:
diff changeset
359 A2M A2M alpha-2-macroglobulin DKFZP779B086S863-7ALPHA 2MFWP007CPAMD5
aef0ecc00683 initial commit
fubar
parents:
diff changeset
360 A2ML1 A2ML1 alpha-2-macroglobulin-like 1 FLJ39129DKFZP686O1010FLJ41598DKFZP686G1812FLJ25179CPAMD9DKFZP686D2011FLJ16045FLJ41607DKFZP686C1729FLJ41597DKFZP686L1821
aef0ecc00683 initial commit
fubar
parents:
diff changeset
361
aef0ecc00683 initial commit
fubar
parents:
diff changeset
362 GenosysCytokineV2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
363 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
364 M05.2 GDF11 growth differentiation factor 11
aef0ecc00683 initial commit
fubar
parents:
diff changeset
365 M22.2 AE000170 No description available
aef0ecc00683 initial commit
fubar
parents:
diff changeset
366 E06.3 IL5 interleukin 5 (colony-stimulating factor, eosinophil)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
367
aef0ecc00683 initial commit
fubar
parents:
diff changeset
368 HC_G110.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
369 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
370 1000_at MAPK3 mitogen-activated protein kinase 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
371 1001_at TIE1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
372 1002_f_at CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19
aef0ecc00683 initial commit
fubar
parents:
diff changeset
373
aef0ecc00683 initial commit
fubar
parents:
diff changeset
374 HG_Focus.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
375 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
376 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
377 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
378 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
379
aef0ecc00683 initial commit
fubar
parents:
diff changeset
380 HG_U133A_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
381 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
382 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
383 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
384 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
385
aef0ecc00683 initial commit
fubar
parents:
diff changeset
386 HG_U133AAofAv2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
387 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
388 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
389 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
390 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
391
aef0ecc00683 initial commit
fubar
parents:
diff changeset
392 HG_U133A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
393 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
394 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
395 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
396 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
397
aef0ecc00683 initial commit
fubar
parents:
diff changeset
398 HG_U133B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
399 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
400 200000_s_at PRPF8 PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) /// PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
401 200001_at CAPNS1 calpain, small subunit 1 /// calpain, small subunit 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
402 200002_at RPL35 ribosomal protein L35 /// ribosomal protein L35
aef0ecc00683 initial commit
fubar
parents:
diff changeset
403
aef0ecc00683 initial commit
fubar
parents:
diff changeset
404 HG_U133_Plus_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
405 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
406 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
407 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
408 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
409
aef0ecc00683 initial commit
fubar
parents:
diff changeset
410 HG_U95Av2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
411 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
412 1000_at MAPK3 mitogen-activated protein kinase 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
413 1001_at TIE1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
414 1002_f_at CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19
aef0ecc00683 initial commit
fubar
parents:
diff changeset
415
aef0ecc00683 initial commit
fubar
parents:
diff changeset
416 HG_U95B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
417 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
418 41880_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
419 41881_at FLJ40142 FLJ40142 protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
420 41882_at FBXO42 F-box protein 42
aef0ecc00683 initial commit
fubar
parents:
diff changeset
421
aef0ecc00683 initial commit
fubar
parents:
diff changeset
422 HG_U95C.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
423 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
424 48609_r_at KIAA1333 KIAA1333
aef0ecc00683 initial commit
fubar
parents:
diff changeset
425 48610_at C20ORF102 chromosome 20 open reading frame 102
aef0ecc00683 initial commit
fubar
parents:
diff changeset
426 48612_at N4BP1 /// LOC653213 Nedd4 binding protein 1 /// similar to Nedd4 binding protein 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
427
aef0ecc00683 initial commit
fubar
parents:
diff changeset
428 HG_U95D.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
429 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
430 67020_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
431 67021_at FAM44B Family with sequence similarity 44, member B
aef0ecc00683 initial commit
fubar
parents:
diff changeset
432 67023_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
433
aef0ecc00683 initial commit
fubar
parents:
diff changeset
434 HG_U95E.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
435 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
436 67022_at PIP5K2B Phosphatidylinositol-4-phosphate 5-kinase, type II, beta
aef0ecc00683 initial commit
fubar
parents:
diff changeset
437 67024_at CASD1 CAS1 domain containing 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
438 67026_at NFASC neurofascin homolog (chicken)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
439
aef0ecc00683 initial commit
fubar
parents:
diff changeset
440 HPCGGCompugenAnnotations.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
441 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
442 MGI:1913066 SH3MD2 Sh3md2, SH3 multiple domains 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
443 MGI:1913099 5430413I02RIK 5430413I02Rik, RIKEN cDNA 5430413I02 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
444 MGI:98848 TSHB Tshb, thyroid stimulating hormone, beta subunit
aef0ecc00683 initial commit
fubar
parents:
diff changeset
445
aef0ecc00683 initial commit
fubar
parents:
diff changeset
446 HT_HG_U133A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
447 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
448 1007_s_at DDR1 discoidin domain receptor family, member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
449 1053_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
450 117_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
451
aef0ecc00683 initial commit
fubar
parents:
diff changeset
452 Hu35KsubA.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
453 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
454 AA000993_at PRDM8 PR domain containing 8
aef0ecc00683 initial commit
fubar
parents:
diff changeset
455 AA001296_s_at PHF23 PHD finger protein 23
aef0ecc00683 initial commit
fubar
parents:
diff changeset
456 AA002245_at ZC3H11A zinc finger CCCH-type containing 11A
aef0ecc00683 initial commit
fubar
parents:
diff changeset
457
aef0ecc00683 initial commit
fubar
parents:
diff changeset
458 Hu35KsubB.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
459 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
460 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
461 AFFX-BioB-3_st --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
462 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
463
aef0ecc00683 initial commit
fubar
parents:
diff changeset
464 Hu35KsubC.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
465 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
466 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
467 AFFX-BioB-3_st --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
468 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
469
aef0ecc00683 initial commit
fubar
parents:
diff changeset
470 Hu35KsubD.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
471 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
472 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
473 AFFX-BioB-3_st --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
474 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
475
aef0ecc00683 initial commit
fubar
parents:
diff changeset
476 Hu6800.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
477 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
478 A28102_at GABRA3 gamma-aminobutyric acid (GABA) A receptor, alpha 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
479 AB000114_at OMD osteomodulin
aef0ecc00683 initial commit
fubar
parents:
diff changeset
480 AB000115_at IFI44L interferon-induced protein 44-like
aef0ecc00683 initial commit
fubar
parents:
diff changeset
481
aef0ecc00683 initial commit
fubar
parents:
diff changeset
482 Illumina_Human.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
483 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
484 1-A-1 BCAP31 B-cell receptor-associated protein 31
aef0ecc00683 initial commit
fubar
parents:
diff changeset
485 1-A-10 NSFL1C NSFL1 (p97) cofactor (p47)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
486 1-A-11 C20ORF24 chromosome 20 open reading frame 24
aef0ecc00683 initial commit
fubar
parents:
diff changeset
487
aef0ecc00683 initial commit
fubar
parents:
diff changeset
488 ilmn_HumanHT_12_V4_0_R1_15002873_B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
489 Probe Set ID Gene Symbol Gene Title Entrez Gene ID
aef0ecc00683 initial commit
fubar
parents:
diff changeset
490 ILMN_1725881 LOC23117 PREDICTED: Homo sapiens KIAA0220-like protein, transcript variant 11 (LOC23117), mRNA. 23117
aef0ecc00683 initial commit
fubar
parents:
diff changeset
491 ILMN_1910180 Homo sapiens cDNA: FLJ21027 fis, clone CAE07110 -999
aef0ecc00683 initial commit
fubar
parents:
diff changeset
492 ILMN_1804174 FCGR2B PREDICTED: Homo sapiens Fc fragment of IgG, low affinity IIb, receptor (CD32) (FCGR2B), mRNA. 2213
aef0ecc00683 initial commit
fubar
parents:
diff changeset
493
aef0ecc00683 initial commit
fubar
parents:
diff changeset
494 ilmn_MouseRef_8_V2_0_R3_11278551_A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
495 Probe Set ID Gene Symbol Gene Title Entrez Gene ID
aef0ecc00683 initial commit
fubar
parents:
diff changeset
496 ILMN_2607609 YIF1B Mus musculus Yip1 interacting factor homolog B (S. cerevisiae) (Yif1b), mRNA. 77254
aef0ecc00683 initial commit
fubar
parents:
diff changeset
497 ILMN_1238674 2700007P21RIK Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA. 212772
aef0ecc00683 initial commit
fubar
parents:
diff changeset
498 ILMN_3062534 2700007P21RIK Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA. 212772
aef0ecc00683 initial commit
fubar
parents:
diff changeset
499
aef0ecc00683 initial commit
fubar
parents:
diff changeset
500 ilmn_MouseWG_6_V2_0_R3_11278593_A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
501 Probe Set ID Gene Symbol Gene Title Entrez Gene ID
aef0ecc00683 initial commit
fubar
parents:
diff changeset
502 ILMN_1243094 THRSP NULL -999
aef0ecc00683 initial commit
fubar
parents:
diff changeset
503 ILMN_1238674 2700007P21RIK Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA. 212772
aef0ecc00683 initial commit
fubar
parents:
diff changeset
504 ILMN_2454720 2700007P21RIK Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA. 212772
aef0ecc00683 initial commit
fubar
parents:
diff changeset
505
aef0ecc00683 initial commit
fubar
parents:
diff changeset
506 labonweb_human.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
507 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
508 1-A1 GAPD glyceraldehyde-3-phosphate dehydrogenase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
509 1-A10 BMP5 bone morphogenetic protein 5
aef0ecc00683 initial commit
fubar
parents:
diff changeset
510 1-A11 C9ORF78 chromosome 9 open reading frame 78
aef0ecc00683 initial commit
fubar
parents:
diff changeset
511
aef0ecc00683 initial commit
fubar
parents:
diff changeset
512 lymphochip.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
513 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
514 1317148 TNF tumor necrosis factor (TNF superfamily, member 2)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
515 814251 SLAMF1 signaling lymphocytic activation molecule family member 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
516 712899___1 AA282233 zt12d02.s1 NCI_CGAP_GCB1 Homo sapiens cDNA clone
aef0ecc00683 initial commit
fubar
parents:
diff changeset
517
aef0ecc00683 initial commit
fubar
parents:
diff changeset
518 MG_U74Av2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
519 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
520 100001_at CD3G CD3 antigen, gamma polypeptide
aef0ecc00683 initial commit
fubar
parents:
diff changeset
521 100002_at ITIH3 inter-alpha trypsin inhibitor, heavy chain 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
522 100003_at RYR1 ryanodine receptor 1, skeletal muscle
aef0ecc00683 initial commit
fubar
parents:
diff changeset
523
aef0ecc00683 initial commit
fubar
parents:
diff changeset
524 MG_U74Bv2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
525 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
526 104769_at LIMA1 LIM domain and actin binding 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
527 104770_at --- 16 days neonate heart cDNA, RIKEN full-length enriched library, clone:D830033B01 product:unclassifiable, full insert sequence
aef0ecc00683 initial commit
fubar
parents:
diff changeset
528 104771_at RAC2 RAS-related C3 botulinum substrate 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
529
aef0ecc00683 initial commit
fubar
parents:
diff changeset
530 MG_U74Cv2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
531 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
532 128520_at CCDC97 coiled-coil domain containing 97
aef0ecc00683 initial commit
fubar
parents:
diff changeset
533 128523_at A730063M14RIK RIKEN cDNA A730063M14 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
534 128529_at A930009G19RIK RIKEN cDNA A930009G19 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
535
aef0ecc00683 initial commit
fubar
parents:
diff changeset
536 MOE430A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
537 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
538 1415670_at COPG coatomer protein complex, subunit gamma
aef0ecc00683 initial commit
fubar
parents:
diff changeset
539 1415671_at ATP6V0D1 ATPase, H+ transporting, lysosomal V0 subunit D1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
540 1415672_at GOLGA7 golgi autoantigen, golgin subfamily a, 7
aef0ecc00683 initial commit
fubar
parents:
diff changeset
541
aef0ecc00683 initial commit
fubar
parents:
diff changeset
542 MOE430B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
543 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
544 1415670_at COPG coatomer protein complex, subunit gamma
aef0ecc00683 initial commit
fubar
parents:
diff changeset
545 1415671_at ATP6V0D1 ATPase, H+ transporting, lysosomal V0 subunit D1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
546 1415672_at GOLGA7 golgi autoantigen, golgin subfamily a, 7
aef0ecc00683 initial commit
fubar
parents:
diff changeset
547
aef0ecc00683 initial commit
fubar
parents:
diff changeset
548 Mouse430_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
549 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
550 1415670_at COPG coatomer protein complex, subunit gamma
aef0ecc00683 initial commit
fubar
parents:
diff changeset
551 1415671_at ATP6V0D1 ATPase, H+ transporting, lysosomal V0 subunit D1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
552 1415672_at GOLGA7 golgi autoantigen, golgin subfamily a, 7
aef0ecc00683 initial commit
fubar
parents:
diff changeset
553
aef0ecc00683 initial commit
fubar
parents:
diff changeset
554 Mouse430A_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
555 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
556 1415670_at COPG coatomer protein complex, subunit gamma
aef0ecc00683 initial commit
fubar
parents:
diff changeset
557 1415671_at ATP6V0D1 ATPase, H+ transporting, lysosomal V0 subunit D1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
558 1415672_at GOLGA7 golgi autoantigen, golgin subfamily a, 7
aef0ecc00683 initial commit
fubar
parents:
diff changeset
559
aef0ecc00683 initial commit
fubar
parents:
diff changeset
560 Mu11KsubA.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
561 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
562 aa000148_s_at NIP7 nuclear import 7 homolog (S. cerevisiae)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
563 AA000151_at 1200011I18RIK RIKEN cDNA 1200011I18 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
564 aa000380_s_at TARDBP TAR DNA binding protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
565
aef0ecc00683 initial commit
fubar
parents:
diff changeset
566 Mu11KsubB.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
567 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
568 AFFX-18SRNAMur/X00686_3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
569 AFFX-18SRNAMur/X00686_5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
570 AFFX-18SRNAMur/X00686_M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
571
aef0ecc00683 initial commit
fubar
parents:
diff changeset
572 Mu19KsubA.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
573 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
574 AFFX-18SRNAMur/X00686_3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
575 AFFX-18SRNAMur/X00686_5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
576 AFFX-18SRNAMur/X00686_M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
577
aef0ecc00683 initial commit
fubar
parents:
diff changeset
578 Mu19KsubB.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
579 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
580 AFFX-18SRNAMur/X00686_3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
581 AFFX-18SRNAMur/X00686_5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
582 AFFX-18SRNAMur/X00686_M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
583
aef0ecc00683 initial commit
fubar
parents:
diff changeset
584 Mu19KsubC.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
585 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
586 AFFX-18SRNAMur/X00686_3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
587 AFFX-18SRNAMur/X00686_5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
588 AFFX-18SRNAMur/X00686_M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
589
aef0ecc00683 initial commit
fubar
parents:
diff changeset
590 MWG_Human_30K_A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
591 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
592 1-A1 IFNA8 interferon, alpha 8
aef0ecc00683 initial commit
fubar
parents:
diff changeset
593 1-A10 AGL amylo-1, 6-glucosidase, 4-alpha-glucanotransferase (glycogen debranching enzyme, glycogen storage disease type III)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
594 1-A11 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
595
aef0ecc00683 initial commit
fubar
parents:
diff changeset
596 MWG_Human_30K_B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
597 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
598 1-A10 ADAM11 a disintegrin and metalloproteinase domain 11
aef0ecc00683 initial commit
fubar
parents:
diff changeset
599 1-A11 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
600 1-A12 MAST3 microtubule associated serine/threonine kinase 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
601
aef0ecc00683 initial commit
fubar
parents:
diff changeset
602 Netherland_cancer_institute_operon_human_35k.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
603 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
604 H200001046 ZZZ3 zinc finger, ZZ domain containing 3 [Homo sapiens]. [Source:RefSeq;Acc:NM_015534]
aef0ecc00683 initial commit
fubar
parents:
diff changeset
605 H200011098 ZZEF1 zinc finger, ZZ-type with EF hand domain 1 [Homo sapiens]. [Source:RefSeq;Acc:NM_015113]
aef0ecc00683 initial commit
fubar
parents:
diff changeset
606 H200006223 ZYX Zyxin (Zyxin 2). [Source:Uniprot/SWISSPROT;Acc:Q15942]
aef0ecc00683 initial commit
fubar
parents:
diff changeset
607
aef0ecc00683 initial commit
fubar
parents:
diff changeset
608 Netherland_cancer_institute_operon_mouse_FOOk.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
609 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
610 M300012631 ZZEF1 NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
611 M300012632 ZZEF1 NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
612 M200002019 ZYX Zyxin. [Source:Uniprot/SWISSPROT;Acc:Q62523]
aef0ecc00683 initial commit
fubar
parents:
diff changeset
613
aef0ecc00683 initial commit
fubar
parents:
diff changeset
614 NIA15k.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
615 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
616 H3051B03 BG067146 H3051B03-3 NIA Mouse 15K cDNA Clone Set Mus musculus cDNA
aef0ecc00683 initial commit
fubar
parents:
diff changeset
617 H3067H02 BG068648 H3067H02-3 NIA Mouse 15K cDNA Clone Set Mus musculus cDNA
aef0ecc00683 initial commit
fubar
parents:
diff changeset
618 H3121E03 AK029878 NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
619
aef0ecc00683 initial commit
fubar
parents:
diff changeset
620 OPERON_HUMANv2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
621 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
622 1-A01 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
623 1-A02 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
624 1-A03 NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
625
aef0ecc00683 initial commit
fubar
parents:
diff changeset
626 OPERON_HUMANv3.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
627 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
628 1-A03 TSPAN6 tetraspanin 6
aef0ecc00683 initial commit
fubar
parents:
diff changeset
629 1-A04 AK2 adenylate kinase 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
630 1-A05 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
631
aef0ecc00683 initial commit
fubar
parents:
diff changeset
632 RAE230A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
633 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
634 1367452_at SUMO2 SMT3 suppressor of mif two 3 homolog 2 (yeast)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
635 1367453_at CDC37 cell division cycle 37 homolog (S. cerevisiae)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
636 1367454_at COPB2 coatomer protein complex, subunit beta 2 (beta prime)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
637
aef0ecc00683 initial commit
fubar
parents:
diff changeset
638 RAE230B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
639 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
640 1367452_at SUMO2 SMT3 suppressor of mif two 3 homolog 2 (yeast)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
641 1367453_at CDC37 cell division cycle 37 homolog (S. cerevisiae)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
642 1367454_at COPB2 coatomer protein complex, subunit beta 2 (beta prime)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
643
aef0ecc00683 initial commit
fubar
parents:
diff changeset
644 Rat230_2.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
645 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
646 1367452_at SUMO2 SMT3 suppressor of mif two 3 homolog 2 (yeast)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
647 1367453_at CDC37 cell division cycle 37 homolog (S. cerevisiae)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
648 1367454_at COPB2 coatomer protein complex, subunit beta 2 (beta prime)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
649
aef0ecc00683 initial commit
fubar
parents:
diff changeset
650 RefSeq_human.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
651 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
652 NM_030625 CXXC6 CXXC finger 6
aef0ecc00683 initial commit
fubar
parents:
diff changeset
653 NM_181776 SLC36A2 solute carrier family 36 (proton/amino acid symporter), member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
654 NM_152616 TRIM42 tripartite motif-containing 42
aef0ecc00683 initial commit
fubar
parents:
diff changeset
655
aef0ecc00683 initial commit
fubar
parents:
diff changeset
656 RefSeq_NP_Human.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
657 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
658 NP_000005 A2M alpha-2-macroglobulin
aef0ecc00683 initial commit
fubar
parents:
diff changeset
659 NP_000006 NAT2 N-acetyltransferase 2 (arylamine N-acetyltransferase)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
660 NP_000007 ACADM acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain
aef0ecc00683 initial commit
fubar
parents:
diff changeset
661
aef0ecc00683 initial commit
fubar
parents:
diff changeset
662 RefSeq_NP_Mouse.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
663 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
664 AAF62769 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
665 AAF62770 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
666 AAF62771 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
667
aef0ecc00683 initial commit
fubar
parents:
diff changeset
668 RefSeq_NP_Rat.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
669 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
670 NP_007225 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
671 NP_007226 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
672 NP_007227 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
673
aef0ecc00683 initial commit
fubar
parents:
diff changeset
674 Research_Genetics.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
675 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
676 1-a-1 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
677 1-a-10 WNT2 wingless-type MMTV integration site family member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
678 1-a-11 VHL von Hippel-Lindau tumor suppressor
aef0ecc00683 initial commit
fubar
parents:
diff changeset
679
aef0ecc00683 initial commit
fubar
parents:
diff changeset
680 RG_U34A.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
681 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
682 A01157cds_s_at LIPF lipase, gastric
aef0ecc00683 initial commit
fubar
parents:
diff changeset
683 A03913cds_s_at SERPINE2 serine (or cysteine) proteinase inhibitor, clade E, member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
684 A04674cds_s_at UCP1 uncoupling protein 1 (mitochondrial, proton carrier)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
685
aef0ecc00683 initial commit
fubar
parents:
diff changeset
686 RG_U34B.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
687 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
688 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
689 AFFX-BioB-3_st --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
690 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
691
aef0ecc00683 initial commit
fubar
parents:
diff changeset
692 RG_U34C.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
693 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
694 AA012646_i_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
695 AA012646_r_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
696 AA012654_at --- Transcribed locus
aef0ecc00683 initial commit
fubar
parents:
diff changeset
697
aef0ecc00683 initial commit
fubar
parents:
diff changeset
698 RN_U34.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
699 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
700 A03913cds_s_at SERPINE2 serine (or cysteine) proteinase inhibitor, clade E, member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
701 A17753cds_s_at DRD3 dopamine receptor D3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
702 AA848563_s_at HSPA1A /// HSPA1B_MAPPED heat shock 70kD protein 1A /// heat shock 70kD protein 1B (mapped)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
703
aef0ecc00683 initial commit
fubar
parents:
diff changeset
704 Rosetta50K.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
705 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
706 1360465 RANBP9 RAN binding protein 9
aef0ecc00683 initial commit
fubar
parents:
diff changeset
707 1176829 LOC375449 similar to microtubule associated testis specific serine/threonine protein kinase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
708 1351074 NEDD4L neural precursor cell expressed, developmentally down-regulated 4-like
aef0ecc00683 initial commit
fubar
parents:
diff changeset
709
aef0ecc00683 initial commit
fubar
parents:
diff changeset
710 Rosetta.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
711 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
712 NM_000504 F10 coagulation factor X
aef0ecc00683 initial commit
fubar
parents:
diff changeset
713 Contig32955_RC ARL6IP6 ADP-ribosylation-like factor 6 interacting protein 6
aef0ecc00683 initial commit
fubar
parents:
diff changeset
714 AK000455 MGC16733 hypothetical gene MGC16733 similar to CG12113
aef0ecc00683 initial commit
fubar
parents:
diff changeset
715
aef0ecc00683 initial commit
fubar
parents:
diff changeset
716 RT_U34.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
717 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
718 AA108277_at HSPH1 heat shock 105kDa/110kDa protein 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
719 AA108308_i_at MDM2_PREDICTED Transformed mouse 3T3 cell double minute 2 homolog (mouse) (predicted)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
720 AA108308_s_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
721
aef0ecc00683 initial commit
fubar
parents:
diff changeset
722 RZPD_Human_Ensembl1.1.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
723 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
724 RZPDp203A011001D SARDH sarcosine dehydrogenase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
725 RZPDp203A011002D ARHGAP22 Rho GTPase activating protein 22
aef0ecc00683 initial commit
fubar
parents:
diff changeset
726 RZPDp203A011003D CNGA3 cyclic nucleotide gated channel alpha 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
727
aef0ecc00683 initial commit
fubar
parents:
diff changeset
728 RZPD_Human_ORF_Clones_Gateway.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
729 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
730 RZPDo834A0110D - Gateway (closed) PTD015 PTD015 protein
aef0ecc00683 initial commit
fubar
parents:
diff changeset
731 RZPDo834A0114D - Gateway (closed) TRIB3 tribbles homolog 3 (Drosophila)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
732 RZPDo834A0116D - Gateway (closed) ORM2 orosomucoid 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
733
aef0ecc00683 initial commit
fubar
parents:
diff changeset
734 RZPD_Human_Unigene3.1.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
735 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
736 HU3_p983A011001D SARDH sarcosine dehydrogenase
aef0ecc00683 initial commit
fubar
parents:
diff changeset
737 HU3_p983A011002D ARHGAP22 Rho GTPase activating protein 22
aef0ecc00683 initial commit
fubar
parents:
diff changeset
738 HU3_p983A011003D CNGA3 cyclic nucleotide gated channel alpha 3
aef0ecc00683 initial commit
fubar
parents:
diff changeset
739
aef0ecc00683 initial commit
fubar
parents:
diff changeset
740 Seq_Accession.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
741 Probe Set ID Gene Symbol
aef0ecc00683 initial commit
fubar
parents:
diff changeset
742 AA017197 C21ORF36
aef0ecc00683 initial commit
fubar
parents:
diff changeset
743 AA191116 MTVR2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
744 AA280701 CXYORF7
aef0ecc00683 initial commit
fubar
parents:
diff changeset
745
aef0ecc00683 initial commit
fubar
parents:
diff changeset
746 Stanford.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
747 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
748 IMAGE:703849 DDB2 damage-specific DNA binding protein 2, 48kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
749 IMAGE:1301778 ZFY zinc finger protein, Y-linked
aef0ecc00683 initial commit
fubar
parents:
diff changeset
750 IMAGE:795810 HS.99503HS.520681 Homo sapiens transcribed sequenceHomo sapiens, clone IMAGE:4823270, mRNA
aef0ecc00683 initial commit
fubar
parents:
diff changeset
751
aef0ecc00683 initial commit
fubar
parents:
diff changeset
752 Stanford_Source_Accessions.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
753 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
754 AI848107 0610010K14RIK RIKEN cDNA 0610010K14 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
755 AK002491 0610010K14RIK RIKEN cDNA 0610010K14 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
756 AK003842 0610010K14RIK RIKEN cDNA 0610010K14 gene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
757
aef0ecc00683 initial commit
fubar
parents:
diff changeset
758 TIGR_31K_Human_Set.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
759 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
760 1-1 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
761 1-10 WNT2 wingless-type MMTV integration site family member 2
aef0ecc00683 initial commit
fubar
parents:
diff changeset
762 1-11 VHL von Hippel-Lindau tumor suppressor
aef0ecc00683 initial commit
fubar
parents:
diff changeset
763
aef0ecc00683 initial commit
fubar
parents:
diff changeset
764 TIGR_40K_Human_Set.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
765 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
766 10 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
767 100 TEX27 testis expressed sequence 27
aef0ecc00683 initial commit
fubar
parents:
diff changeset
768 1000 HOXA1 homeo box A1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
769
aef0ecc00683 initial commit
fubar
parents:
diff changeset
770 U133_X3P.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
771 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
772 1053_3p_at RFC2 replication factor C (activator 1) 2, 40kDa
aef0ecc00683 initial commit
fubar
parents:
diff changeset
773 117_3p_at HSPA6 /// LOC652878 heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
aef0ecc00683 initial commit
fubar
parents:
diff changeset
774 1494_3p_f_at CYP2A6 cytochrome P450, family 2, subfamily A, polypeptide 6
aef0ecc00683 initial commit
fubar
parents:
diff changeset
775
aef0ecc00683 initial commit
fubar
parents:
diff changeset
776 UCLA_NIH_33K.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
777 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
778 1020181 NULL NULL
aef0ecc00683 initial commit
fubar
parents:
diff changeset
779 1020315 VAV2 vav 2 oncogene
aef0ecc00683 initial commit
fubar
parents:
diff changeset
780 1020478 AP1GBP1 AP1 gamma subunit binding protein 1
aef0ecc00683 initial commit
fubar
parents:
diff changeset
781
aef0ecc00683 initial commit
fubar
parents:
diff changeset
782 Zebrafish.chip
aef0ecc00683 initial commit
fubar
parents:
diff changeset
783 Probe Set ID Gene Symbol Gene Title
aef0ecc00683 initial commit
fubar
parents:
diff changeset
784 AFFX-BioB-3_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
785 AFFX-BioB-5_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
786 AFFX-BioB-M_at --- ---
aef0ecc00683 initial commit
fubar
parents:
diff changeset
787
aef0ecc00683 initial commit
fubar
parents:
diff changeset
788
aef0ecc00683 initial commit
fubar
parents:
diff changeset
789 .. _LGPL: http://www.gnu.org/copyleft/lesser.html
aef0ecc00683 initial commit
fubar
parents:
diff changeset
790 .. _GSEA: http://www.broadinstitute.org/gsea
aef0ecc00683 initial commit
fubar
parents:
diff changeset
791 .. _GUIDE: http://www.broadinstitute.org/gsea/doc/GSEAUserGuideFrame.html?_Interpreting_GSEA_Results
aef0ecc00683 initial commit
fubar
parents:
diff changeset
792 .. _MSigDB: http://www.broadinstitute.org/gsea/msigdb/index.jsp
aef0ecc00683 initial commit
fubar
parents:
diff changeset
793 .. _2005Paper: http://www.pnas.org/content/102/43/15545.full
aef0ecc00683 initial commit
fubar
parents:
diff changeset
794
aef0ecc00683 initial commit
fubar
parents:
diff changeset
795 </help>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
796
aef0ecc00683 initial commit
fubar
parents:
diff changeset
797 </tool>
aef0ecc00683 initial commit
fubar
parents:
diff changeset
798
aef0ecc00683 initial commit
fubar
parents:
diff changeset
799