Changeset 560
- Timestamp:
- Jan 29, 2008, 2:53:47 PM (15 years ago)
- Location:
- trunk/net/sf/basedb/illumina/src/net/sf/basedb/illumina
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/net/sf/basedb/illumina/src/net/sf/basedb/illumina/Illumina.java
r556 r560 24 24 */ 25 25 package net.sf.basedb.illumina; 26 27 import net.sf.basedb.core.RawDataType; 28 import net.sf.basedb.core.RawDataTypes; 26 29 27 30 … … 52 55 /** 53 56 The ID for the main Illumina platform item. Use 54 <code>Platform.getByExternalId(dc, Illumina.PLATFORM )<code>57 <code>Platform.getByExternalId(dc, Illumina.PLATFORM_ID)<code> 55 58 to load this item. 56 59 */ 57 public static final String PLATFORM = "illumina";60 public static final String PLATFORM_ID = "illumina"; 58 61 62 /** 63 The ID of the raw data type used to hold scandata raw data. 64 Use {@link #getScanDataType()} to get the raw data type object. 65 */ 66 public static final String SCANDATA_ID = "illumina_scandata"; 59 67 60 68 /** 61 69 The ID for the BGX {@link DataFileType}. Use 62 <code>DataFileType.getByExternalId(dc, Illumina.BGX_FILE )</code>70 <code>DataFileType.getByExternalId(dc, Illumina.BGX_FILE_ID)</code> 63 71 to load this item. 64 72 */ 65 public static final String BGX_FILE = "illumina.bgx";73 public static final String BGX_FILE_ID = "illumina.bgx"; 66 74 67 75 /** 76 Get the {@link RawDataType} representing the scandata 77 raw data type. 78 @return A raw data type (null if this type is not present) 79 */ 80 public static final RawDataType getScanDataType() 81 { 82 return RawDataTypes.getRawDataType(SCANDATA_ID); 83 } 68 84 69 85
Note: See TracChangeset
for help on using the changeset viewer.