|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.basedb.core.data.BasicData net.sf.basedb.core.data.OwnedData net.sf.basedb.core.data.SharedData net.sf.basedb.core.data.CommonData net.sf.basedb.core.data.AnnotatedData net.sf.basedb.core.data.RawBioAssayData
public class RawBioAssayData
This class holds information about a raw bioassay, which is the raw data extracted from a scan.
RawBioAssay
,
Hybridzations and raw data overviewField Summary | |
---|---|
private ArrayDesignData |
arrayDesign
|
private int |
arrayNum
|
private Set<BioAssayData> |
bioAssays
|
private long |
bytes
|
private DiskUsageData |
diskUsage
|
private Date |
entryDate
|
private Set<ExperimentData> |
experiments
|
private FileSetData |
fileSet
|
private int |
fileSpots
|
private boolean |
hasData
|
private Map<String,String> |
headers
|
private JobData |
job
|
static int |
MAX_HEADER_NAME_LENGTH
|
static int |
MAX_HEADER_VALUE_LENGTH
|
private PlatformData |
platform
|
private ProtocolData |
protocol
|
private String |
rawDataType
|
private ScanData |
scan
|
private SoftwareData |
software
|
private SpotImagesData |
spotImages
|
private int |
spots
|
private Set<TransformationData> |
transformations
|
private PlatformVariantData |
variant
|
Fields inherited from interface net.sf.basedb.core.data.NameableData |
---|
MAX_DESCRIPTION_LENGTH, MAX_NAME_LENGTH |
Constructor Summary | |
---|---|
RawBioAssayData()
|
Method Summary | |
---|---|
ArrayDesignData |
getArrayDesign()
Get the array design used for the hybridization this raw bio assay comes from. |
int |
getArrayNum()
The array number this raw bioassay is linked to on a multi-array hybridization. |
(package private) Set<BioAssayData> |
getBioAssays()
This is the inverse end. |
long |
getBytes()
The number of bytes the raw data occupies on disk. |
DiskUsageData |
getDiskUsage()
Get the DiskUsageData that this item use. |
Date |
getEntryDate()
Get the date this item was added to the database. |
(package private) Set<ExperimentData> |
getExperiments()
This is the inverse end. |
FileSetData |
getFileSet()
Get the file set attached to this item. |
boolean |
getHasData()
If the raw bioassay has data or not. |
Map<String,String> |
getHeaders()
File headers from the raw data file. |
JobData |
getJob()
Get the job that was used to import raw data to this raw bioassay |
int |
getNumFileSpots()
The number of spots on this raw bioassay that are stored inside files. |
PlatformData |
getPlatform()
Get the platform this raw bioassay uses. |
ProtocolData |
getProtocol()
Get the protocol used for the image analysis. |
String |
getRawDataType()
Get the name of the raw data type used by this raw bio assay. |
ScanData |
getScan()
Get the scan. |
SoftwareData |
getSoftware()
Get the software used to analyse the scanned image and produce the raw data. |
SpotImagesData |
getSpotImages()
Get the settings used for generating spot images for this raw bio assay. |
int |
getSpots()
The number of data spots in this raw bio assay, that are stored in the database. |
(package private) Set<TransformationData> |
getTransformations()
This is the inverse end. |
PlatformVariantData |
getVariant()
Get the platform variant this raw bioassay uses, or null. |
void |
setArrayDesign(ArrayDesignData arrayDesign)
|
void |
setArrayNum(int arrayNum)
|
(package private) void |
setBioAssays(Set<BioAssayData> bioAssays)
|
void |
setBytes(long bytes)
|
(package private) void |
setDiskUsage(DiskUsageData diskUsage)
|
void |
setEntryDate(Date entryDate)
|
(package private) void |
setExperiments(Set<ExperimentData> experiments)
|
void |
setFileSet(FileSetData fileSet)
Attach a file set to the item. |
void |
setHasData(boolean hasData)
|
(package private) void |
setHeaders(Map<String,String> headers)
|
void |
setJob(JobData job)
|
void |
setNumFileSpots(int fileSpots)
|
void |
setPlatform(PlatformData platform)
|
void |
setProtocol(ProtocolData protocol)
|
void |
setRawDataType(String rawDataType)
|
void |
setScan(ScanData scan)
|
void |
setSoftware(SoftwareData software)
|
(package private) void |
setSpotImages(SpotImagesData spotImages)
|
void |
setSpots(int spots)
|
(package private) void |
setTransformations(Set<TransformationData> transformations)
|
void |
setVariant(PlatformVariantData variant)
|
Methods inherited from class net.sf.basedb.core.data.AnnotatedData |
---|
getAnnotationSet, setAnnotationSet |
Methods inherited from class net.sf.basedb.core.data.CommonData |
---|
getDescription, getName, isRemoved, setDescription, setName, setRemoved |
Methods inherited from class net.sf.basedb.core.data.SharedData |
---|
getItemKey, getProjectKey, setItemKey, setProjectKey |
Methods inherited from class net.sf.basedb.core.data.OwnedData |
---|
getOwner, setOwner |
Methods inherited from class net.sf.basedb.core.data.BasicData |
---|
equals, getId, getVersion, hashCode, setId, setVersion, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface net.sf.basedb.core.data.OwnableData |
---|
getOwner, setOwner |
Methods inherited from interface net.sf.basedb.core.data.IdentifiableData |
---|
getId, getVersion |
Field Detail |
---|
private DiskUsageData diskUsage
private FileSetData fileSet
private Date entryDate
private PlatformData platform
private PlatformVariantData variant
private JobData job
private int arrayNum
private ScanData scan
private SoftwareData software
private ProtocolData protocol
private ArrayDesignData arrayDesign
private SpotImagesData spotImages
private String rawDataType
private boolean hasData
private int spots
private int fileSpots
private long bytes
public static final int MAX_HEADER_NAME_LENGTH
public static final int MAX_HEADER_VALUE_LENGTH
private Map<String,String> headers
private Set<ExperimentData> experiments
private Set<TransformationData> transformations
private Set<BioAssayData> bioAssays
Constructor Detail |
---|
public RawBioAssayData()
Method Detail |
---|
public DiskUsageData getDiskUsage()
DiskConsumableData
DiskUsageData
that this item use.
getDiskUsage
in interface DiskConsumableData
void setDiskUsage(DiskUsageData diskUsage)
public FileSetData getFileSet()
FileStoreEnabledData
getFileSet
in interface FileStoreEnabledData
FileSetData
object or null if no files are attachedpublic void setFileSet(FileSetData fileSet)
FileStoreEnabledData
setFileSet
in interface FileStoreEnabledData
public Date getEntryDate()
RegisteredData
getEntryDate
in interface RegisteredData
public void setEntryDate(Date entryDate)
public PlatformData getPlatform()
public void setPlatform(PlatformData platform)
public PlatformVariantData getVariant()
public void setVariant(PlatformVariantData variant)
public JobData getJob()
public void setJob(JobData job)
public int getArrayNum()
public void setArrayNum(int arrayNum)
public ScanData getScan()
public void setScan(ScanData scan)
public SoftwareData getSoftware()
public void setSoftware(SoftwareData software)
public ProtocolData getProtocol()
public void setProtocol(ProtocolData protocol)
public ArrayDesignData getArrayDesign()
public void setArrayDesign(ArrayDesignData arrayDesign)
public SpotImagesData getSpotImages()
void setSpotImages(SpotImagesData spotImages)
public String getRawDataType()
public void setRawDataType(String rawDataType)
public boolean getHasData()
public void setHasData(boolean hasData)
public int getSpots()
public void setSpots(int spots)
public int getNumFileSpots()
public void setNumFileSpots(int fileSpots)
public long getBytes()
public void setBytes(long bytes)
public Map<String,String> getHeaders()
void setHeaders(Map<String,String> headers)
Set<ExperimentData> getExperiments()
ExperimentData.getRawBioAssays()
void setExperiments(Set<ExperimentData> experiments)
Set<TransformationData> getTransformations()
TransformationData.getRawSources()
void setTransformations(Set<TransformationData> transformations)
Set<BioAssayData> getBioAssays()
BioAssayData.getRawParents()
void setBioAssays(Set<BioAssayData> bioAssays)
|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |