//set start & end = null if analyze whole file public void process01_selectFirstFeature(Boolean AlgoEntropy, Boolean AlgoDCFS, DataTable dt_raw, DataTable dt_threshold_pose1, DataTable dt_threshold_pose2) { this.dt_raw = dt_raw; this.dt_threshold_pose1 = dt_threshold_pose1; this.dt_threshold_pose2 = dt_threshold_pose2; this.dt_raw_exclude = TheTool.dataTable_removeCol(dt_raw, list_exclude); if (AlgoEntropy) { process01EntropyAlgo(); } if (AlgoDCFS) { process01DCFS(); } }