Changeset 5773 for trunk/data
- Timestamp:
- Sep 29, 2011, 3:14:56 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/plugin_configfile.xml
r5772 r5773 1232 1232 </parameter> 1233 1233 </configuration> 1234 <configuration pluginClassName="net.sf.basedb.plugins.RawDataFlatFileImporter"> 1235 <configname>Cufflinks isoform FPKM (transcript_id@seqname; no prefix)</configname> 1236 <description>A configuration that import isoforms.fpkm_tracking files and uses <transcript_id>@<seqname> as reporter and feature id.</description> 1237 <parameter> 1238 <name>dataHeaderRegexp</name> 1239 <label>Data header</label> 1240 <description>A regular expression that matches the header line just before the data begins. For example: Block\tRow\tColumn.*</description> 1241 <class>java.lang.String</class> 1242 <value>tracking_id\t.*FPKM.*</value> 1243 </parameter> 1244 <parameter> 1245 <name>complexExpressions</name> 1246 <label>Complex column mappings</label> 1247 <description>disallow = Only allow simple mappings that are constant value or pick the value from one column only, for example, '1.6' or '\Row\' 1248 allow = Allow expression and complex mappings, for example, '\Row\, \Column\' or '=2*col('radius')'</description> 1249 <class>java.lang.String</class> 1250 <value>allow</value> 1251 </parameter> 1252 <parameter> 1253 <name>propertyMapping.status</name> 1254 <label>Status</label> 1255 <description>Quantification status. Can be one of OK (deconvolution successful), LOWDATA (too complex or shallowly sequenced), HIDATA (too many fragments in locus), or FAIL, when an ill-conditioned covariance matrix or other numerical exception prevents deconvolution.</description> 1256 <class>java.lang.String</class> 1257 <value>\status\</value> 1258 </parameter> 1259 <parameter> 1260 <name>charset</name> 1261 <label>Character set</label> 1262 <description>The character set to use when reading the file. This setting overrides the character set specified by the file. If neither this parameter nor the file specifies a character set, the system default is used (ISO-8859-1).</description> 1263 <class>java.lang.String</class> 1264 <value>ISO-8859-1</value> 1265 </parameter> 1266 <parameter> 1267 <name>featureIdColumnMapping</name> 1268 <label>Feature ID</label> 1269 <description>Mapping that picks the spot's feature ID from the data columns. This column is only used when the raw data is connected to an array design which uses the FEATURE_ID method for identifying features. The value is not saved to the database.For example: \Feature ID\</description> 1270 <class>java.lang.String</class> 1271 <value>=col('tracking_id')+'@'+left(col('locus'), ':')</value> 1272 </parameter> 1273 <parameter> 1274 <name>propertyMapping.fpkm_lo</name> 1275 <label>FPKM lo</label> 1276 <description>The lower bound of the 95% confidence interval on the FPKM.</description> 1277 <class>java.lang.String</class> 1278 <value>\FPKM_conf_lo\</value> 1279 </parameter> 1280 <parameter> 1281 <name>dataSplitterRegexp</name> 1282 <label>Data splitter</label> 1283 <description>A regular expression that splits each data line into individual columns. For example, split on tabs: \t</description> 1284 <class>java.lang.String</class> 1285 <value>\t</value> 1286 </parameter> 1287 <parameter> 1288 <name>decimalSeparator</name> 1289 <label>Decimal separator</label> 1290 <description>The decimal separator used in numeric values, if not specified dot is assumed.</description> 1291 <class>java.lang.String</class> 1292 <value>dot</value> 1293 </parameter> 1294 <parameter> 1295 <name>rawDataType</name> 1296 <label>Raw data type</label> 1297 <description>The type of raw data that this importer will import.</description> 1298 <class>java.lang.String</class> 1299 <value>cufflinks</value> 1300 </parameter> 1301 <parameter> 1302 <name>propertyMapping.coverage</name> 1303 <label>Coverage</label> 1304 <description>Estimate for the absolute depth of read coverage across the object.</description> 1305 <class>java.lang.String</class> 1306 <value>\coverage\</value> 1307 </parameter> 1308 <parameter> 1309 <name>propertyMapping.fpkm_hi</name> 1310 <label>FPKM hi</label> 1311 <description>The upper bound of the 95% confidence interval on the FPKM.</description> 1312 <class>java.lang.String</class> 1313 <value>\FPKM_conf_hi\</value> 1314 </parameter> 1315 <parameter> 1316 <name>reporterIdColumnMapping</name> 1317 <label>Reporter ID</label> 1318 <description>Mapping that picks the 'External ID' of the spot's reporter from the data columns. For example: \ID\</description> 1319 <class>java.lang.String</class> 1320 <value>=col('tracking_id')+'@'+left(col('locus'), ':')</value> 1321 </parameter> 1322 <parameter> 1323 <name>trimQuotes</name> 1324 <label>Remove quotes</label> 1325 <description>If true quotes (" or ') around data value will be removed.</description> 1326 <class>java.lang.Boolean</class> 1327 <value>true</value> 1328 </parameter> 1329 <parameter> 1330 <name>propertyMapping.fpkm</name> 1331 <label>FPKM</label> 1332 <description>Fragments Per Kilobase of exon per Million fragments mapped.</description> 1333 <class>java.lang.String</class> 1334 <value>\FPKM\</value> 1335 </parameter> 1336 </configuration> 1337 <configuration pluginClassName="net.sf.basedb.plugins.RawDataFlatFileImporter"> 1338 <configname>Cufflinks isoform FPKM (gene_id; no prefix)</configname> 1339 <description>A configuration that import isoforms.fpkm_tracking files and uses <gene_id> as reporter id and <transcript_id>@<seqname> as feature id.</description> 1340 <parameter> 1341 <name>dataHeaderRegexp</name> 1342 <label>Data header</label> 1343 <description>A regular expression that matches the header line just before the data begins. For example: Block\tRow\tColumn.*</description> 1344 <class>java.lang.String</class> 1345 <value>tracking_id\t.*FPKM.*</value> 1346 </parameter> 1347 <parameter> 1348 <name>complexExpressions</name> 1349 <label>Complex column mappings</label> 1350 <description>disallow = Only allow simple mappings that are constant value or pick the value from one column only, for example, '1.6' or '\Row\' 1351 allow = Allow expression and complex mappings, for example, '\Row\, \Column\' or '=2*col('radius')'</description> 1352 <class>java.lang.String</class> 1353 <value>allow</value> 1354 </parameter> 1355 <parameter> 1356 <name>propertyMapping.status</name> 1357 <label>Status</label> 1358 <description>Quantification status. Can be one of OK (deconvolution successful), LOWDATA (too complex or shallowly sequenced), HIDATA (too many fragments in locus), or FAIL, when an ill-conditioned covariance matrix or other numerical exception prevents deconvolution.</description> 1359 <class>java.lang.String</class> 1360 <value>\status\</value> 1361 </parameter> 1362 <parameter> 1363 <name>charset</name> 1364 <label>Character set</label> 1365 <description>The character set to use when reading the file. This setting overrides the character set specified by the file. If neither this parameter nor the file specifies a character set, the system default is used (ISO-8859-1).</description> 1366 <class>java.lang.String</class> 1367 <value>ISO-8859-1</value> 1368 </parameter> 1369 <parameter> 1370 <name>propertyMapping.fpkm_lo</name> 1371 <label>FPKM lo</label> 1372 <description>The lower bound of the 95% confidence interval on the FPKM.</description> 1373 <class>java.lang.String</class> 1374 <value>\FPKM_conf_lo\</value> 1375 </parameter> 1376 <parameter> 1377 <name>featureIdColumnMapping</name> 1378 <label>Feature ID</label> 1379 <description>Mapping that picks the spot's feature ID from the data columns. This column is only used when the raw data is connected to an array design which uses the FEATURE_ID method for identifying features. The value is not saved to the database.For example: \Feature ID\</description> 1380 <class>java.lang.String</class> 1381 <value>=col('tracking_id')+'@'+left(col('locus'), ':')</value> 1382 </parameter> 1383 <parameter> 1384 <name>decimalSeparator</name> 1385 <label>Decimal separator</label> 1386 <description>The decimal separator used in numeric values, if not specified dot is assumed.</description> 1387 <class>java.lang.String</class> 1388 <value>dot</value> 1389 </parameter> 1390 <parameter> 1391 <name>propertyMapping.coverage</name> 1392 <label>Coverage</label> 1393 <description>Estimate for the absolute depth of read coverage across the object.</description> 1394 <class>java.lang.String</class> 1395 <value>\coverage\</value> 1396 </parameter> 1397 <parameter> 1398 <name>dataSplitterRegexp</name> 1399 <label>Data splitter</label> 1400 <description>A regular expression that splits each data line into individual columns. For example, split on tabs: \t</description> 1401 <class>java.lang.String</class> 1402 <value>\t</value> 1403 </parameter> 1404 <parameter> 1405 <name>rawDataType</name> 1406 <label>Raw data type</label> 1407 <description>The type of raw data that this importer will import.</description> 1408 <class>java.lang.String</class> 1409 <value>cufflinks</value> 1410 </parameter> 1411 <parameter> 1412 <name>propertyMapping.fpkm_hi</name> 1413 <label>FPKM hi</label> 1414 <description>The upper bound of the 95% confidence interval on the FPKM.</description> 1415 <class>java.lang.String</class> 1416 <value>\FPKM_conf_hi\</value> 1417 </parameter> 1418 <parameter> 1419 <name>reporterIdColumnMapping</name> 1420 <label>Reporter ID</label> 1421 <description>Mapping that picks the 'External ID' of the spot's reporter from the data columns. For example: \ID\</description> 1422 <class>java.lang.String</class> 1423 <value>\<gene_id>\</value> 1424 </parameter> 1425 <parameter> 1426 <name>trimQuotes</name> 1427 <label>Remove quotes</label> 1428 <description>If true quotes (" or ') around data value will be removed.</description> 1429 <class>java.lang.Boolean</class> 1430 <value>true</value> 1431 </parameter> 1432 <parameter> 1433 <name>propertyMapping.fpkm</name> 1434 <label>FPKM</label> 1435 <description>Fragments Per Kilobase of exon per Million fragments mapped.</description> 1436 <class>java.lang.String</class> 1437 <value>\FPKM\</value> 1438 </parameter> 1439 </configuration> 1234 1440 </configfile>
Note: See TracChangeset
for help on using the changeset viewer.