예제 #1
0
 @Override
 protected DataValues TransformRawInstance(DataValues instance) throws Exception {
   DataValues transformed = instance.CopyStructure();
   transformed.AddDataPoint(
       _survivalDataPointName,
       instance.GetDataPointValue(TcgaClinicalTabDataParser.SURVIVAL_DATA_POINT_NAME));
   return transformed;
 }
예제 #2
0
 @Override
 protected boolean KeepTransformedInstance(DataValues instance) throws Exception {
   return new TcgaTreatmentsDataProcessor().KeepInstance(instance.GetID());
 }